aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front
Commit message (Collapse)AuthorAgeFilesLines
...
* Switch from booleans to symbolic tags in a few places.Graydon Hoare2011-01-241-23/+28
|
* Teach parser to recognize ITER keyword as item-start.Graydon Hoare2011-01-241-0/+1
|
* Teach AST, parser, folder about iter items.Graydon Hoare2011-01-212-8/+25
|
* Adjust AST encoding, teach fold about linear for loops.Graydon Hoare2011-01-202-12/+21
|
* typoRafael Ávila de Espíndola2011-01-201-1/+1
|
* Teach ast and parser about linear for expressions.Graydon Hoare2011-01-202-28/+56
|
* One last refactoring of the import handling:Rafael Ávila de Espíndola2011-01-182-3/+4
| | | | | | | | | | | | | * Create an import resolving stage. Currently this involves a copy of the ast, we can probably revisit this once we revisit doing full copies of the ast in general. * Don't repeat work. Once we resolve a import, put it on a hash table and use it next time we are asked for it. This solves a O(n^2) behaviour in degenerated cases. * Once import resolution is done, the target of an import is stored on the import itself.
* Change single-ident expr_ident to greedy/fat multi-ident expr_path, to ↵Graydon Hoare2011-01-132-38/+71
| | | | handle the module-path/value-indexing distinction.
* Change mod_index_entry to point directly to items and view_items.Rafael Ávila de Espíndola2011-01-122-49/+53
|
* Sketch support for reading multi-file crates in rustc. Add test, not yet ↵Graydon Hoare2011-01-101-32/+138
| | | | working.
* Add sufficient import support to compile some simple single-crate programs.Rafael Ávila de Espíndola2011-01-071-1/+0
| | | | | This is likely not the final solution. It does repetitive work and doesn't produce errors for invalid but unused imports. In any case, I think it is a useful step.
* Add names from imports to the namespace.Rafael Ávila de Espíndola2011-01-042-3/+7
|
* Add support for looking up a name introduced by a 'use'.Rafael Ávila de Espíndola2011-01-042-11/+24
| | | | | | | | | | With this we go from "error: unresolved name: foo" to "unimplemented definition variant for: foo" in use foo; fn main(vec[str] args) { foo.bar(); }
* Refactor the view_item code so that it is similar to the code used forRafael Ávila de Espíndola2011-01-042-30/+40
| | | | parsing regular items.
* Rename use_or_import to view_item.Rafael Ávila de Espíndola2011-01-042-8/+8
|
* Split driver between parsing source files and crate files, by extension. Add ↵Graydon Hoare2011-01-031-1/+8
| | | | dummy function for crate files.
* Actually return the correct node from the parser.Graydon Hoare2011-01-031-2/+1
|
* Remove missed debug chatter.Graydon Hoare2011-01-031-1/+0
|
* Add restricted-parse mode, and parse bind expressions.Graydon Hoare2010-12-311-10/+68
|
* Parse local item decls.Graydon Hoare2010-12-311-6/+36
|
* Index tag and obj items in decl stmts.Graydon Hoare2010-12-311-0/+6
|
* Add def id to ast for obj fields.Graydon Hoare2010-12-301-0/+1
|
* Record the ast of uses and imports.Rafael Ávila de Espíndola2010-12-302-21/+59
|
* Parse 'import' directives in rustc.Rafael Ávila de Espíndola2010-12-241-0/+44
|
* Parse 'use' directives in rustc.Rafael Ávila de Espíndola2010-12-241-0/+47
|
* rustc: Move type logic out of typeck so trans doesn't look like it's calling ↵Patrick Walton2010-12-211-3/+2
| | | | into typeck
* rustc: Add bind expressions to the ASTPatrick Walton2010-12-201-0/+1
|
* Sketch trans_vtbl.Graydon Hoare2010-12-162-4/+5
|
* rustc: Lex '_' as an underscore, not as an identifierPatrick Walton2010-12-151-1/+4
|
* Add ty_obj to ast and parser.Graydon Hoare2010-12-142-7/+39
|
* Move call_expr parse rule to the place where it needs to be to understand ↵Graydon Hoare2010-12-141-14/+13
| | | | complex calls.
* Add obj items to AST and parser.Graydon Hoare2010-12-142-26/+94
|
* rustc: Add a definition ID to tag patternsPatrick Walton2010-12-122-3/+5
|
* rustc: Resolve pattern bindingsPatrick Walton2010-12-102-2/+22
|
* rustc: Add def ids to pattern bindingsPatrick Walton2010-12-102-2/+2
|
* Fix another bug in expr_index parse rule.Graydon Hoare2010-12-091-1/+1
|
* Fix bug in parse rule for expr_index.Graydon Hoare2010-12-091-0/+5
|
* Add 'unexpected' fn to parser.Graydon Hoare2010-12-091-0/+6
|
* Fix token span tracking in lexer.Graydon Hoare2010-12-091-3/+7
|
* First sketch of support for const items, not including most of trans.Graydon Hoare2010-12-092-0/+23
|
* Add missing case to parse_ty, un-XFAIL cast.rs.Graydon Hoare2010-12-081-0/+1
|
* Implement binop= forms. Un-XFAIL bitwise.rs.Graydon Hoare2010-12-083-1/+24
|
* rustc: Add def ids to variant arguments so we can turn them into function ↵Patrick Walton2010-12-032-10/+11
| | | | arguments later
* Parse layer and effect annotations.Graydon Hoare2010-12-032-10/+69
|
* Change 'stratum' to the friendlier term 'layer'.Graydon Hoare2010-12-031-2/+2
|
* Add code to fail on non-exhaustive alt matching. Fix all cases this picked ↵Graydon Hoare2010-12-011-1/+6
| | | | up in rustc.
* rustc: Annotate variants with their types. This may be useful for trans!Patrick Walton2010-12-012-2/+3
|
* rustc: Resolve tag variant namesPatrick Walton2010-12-012-16/+44
|
* Tidy up structural types for rec, tup AST and typeck nodes.Graydon Hoare2010-11-302-34/+37
|
* rustc: Add def ids to variantsPatrick Walton2010-11-302-2/+4
|