aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front
Commit message (Expand)AuthorAgeFilesLines
* Make the expanded expression in expr_ext not optionalBrian Anderson2011-03-022-2/+2
* Add pretty printing for expr_call, expr_path, and more literalsBrian Anderson2011-03-021-3/+37
* Remove debug logging from extfmtBrian Anderson2011-03-021-13/+0
* Implement #fmt conversion for int and uintBrian Anderson2011-03-021-8/+107
* Start generating AST nodes for #fmtBrian Anderson2011-03-021-8/+34
* Begin an AST pretty-printerBrian Anderson2011-03-021-0/+51
* Rewrite expand_syntax_ext to avoid a mysterious memory leakBrian Anderson2011-03-021-21/+18
* Parse parameter types for fmt extensionBrian Anderson2011-03-021-28/+120
* Begin work on #fmt parsingBrian Anderson2011-03-022-3/+98
* Begin implementing #fmt in rustcBrian Anderson2011-03-023-2/+130
* Parse (and ignore) dtors on objs.Graydon Hoare2011-03-012-10/+23
* Implement the gross rustboot hack for contextual parser access to the compila...Graydon Hoare2011-03-011-4/+18
* Populate default compilation environment as in rustboot.Graydon Hoare2011-03-012-3/+10
* Fix typo in crate directive evaluator.Graydon Hoare2011-02-251-1/+1
* Pass the abi of native functions all the way to codegen.Rafael Ávila de Espíndola2011-02-251-2/+2
* There are no native iterators (or at least they are not going to be supportedRafael Ávila de Espíndola2011-02-252-16/+17
* Support the awful alt-else form in rustboot's cexp grammar, at least transien...Graydon Hoare2011-02-241-0/+17
* Connect the crate and source parsers together.Graydon Hoare2011-02-241-2/+58
* Handle the mutant 'let'-block directive in rustboot, temporarily.Graydon Hoare2011-02-241-0/+15
* Factor crate expr evaluator out of parser, expand to simple scalars and ops, ...Graydon Hoare2011-02-243-81/+452
* Parse crate directive tree in one pass, then evaluate it in a second.Graydon Hoare2011-02-242-33/+96
* Add a type for crate directives, to support intermixing with exprs in crate f...Graydon Hoare2011-02-231-0/+14
* Parse auth clauses, drop them on the floor. Nothing exists to use them yet an...Graydon Hoare2011-02-231-0/+9
* Use the computed abi :-(Rafael Ávila de Espíndola2011-02-231-1/+1
* Parse the abi in native modules.Rafael Ávila de Espíndola2011-02-232-11/+39
* Teach rustc about reserved keywordsBrian Anderson2011-02-221-1/+16
* Rename std._io to std.io since 'io' is no longer a keywordBrian Anderson2011-02-222-3/+3
* Make a tag for iterness / fnness, teach many places about it.Graydon Hoare2011-02-182-42/+60
* More typechecking for native types and the needed plumbing in codegen.Rafael Avila de Espindola2011-02-162-3/+4
* Add _mutable unop.Graydon Hoare2011-02-152-0/+8
* Fix missing path in expr_ext.Graydon Hoare2011-02-152-2/+3
* Add basic front-end support for 'for each' loops.Graydon Hoare2011-02-142-1/+17
* Add basic front-end support for expr_put.Graydon Hoare2011-02-142-0/+16
* Move all non-decl/non-expr stmts to exprs.Graydon Hoare2011-02-142-63/+63
* Adjust commented-out diagnostic log statement in parser.rs.Graydon Hoare2011-02-141-1/+2
* Add parse support for expr_ext.Graydon Hoare2011-02-142-0/+12
* Expand expr_rec to take its optional trailing 'with' parameter.Graydon Hoare2011-02-142-10/+33
* Support indexing pat_lit.Graydon Hoare2011-02-101-0/+1
* Add pat_lit to ast, and support parsing it.Graydon Hoare2011-02-102-22/+22
* Parse effects and layers in a couple contexts; drop on floor as we have nowhe...Graydon Hoare2011-02-101-0/+10
* Cleanup for 'be' statement and comments about future typestateBrian Anderson2011-02-102-1/+18
* Parse 'be' statement. Pass tailcall tests. No actual tailcalls yet.Brian Anderson2011-02-102-0/+8
* Add native modules to resolve. With this hello world gets to typecheck.Rafael Avila de Espindola2011-02-071-0/+2
* Add support forRafael Avila de Espindola2011-02-071-1/+12
* Parse function declarations.Rafael Ávila de Espíndola2011-02-042-12/+37
* Factor the parsing of "type foo" into parse_type_decl.Rafael Ávila de Espíndola2011-02-041-9/+11
* Add most of the plumbing for native items and add support for parsing native ...Rafael Ávila de Espíndola2011-02-022-3/+51
* Add very minimal support for native modules. For now they must be empty.Rafael Ávila de Espíndola2011-02-012-0/+25
* Implement 'else if'Graydon Hoare2011-02-012-11/+33
* Add ty_type.Graydon Hoare2011-02-011-0/+1