index
:
rust
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
comp
/
front
/
parser.rs
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move all non-decl/non-expr stmts to exprs.
Graydon Hoare
2011-02-14
1
-58
/
+58
*
Adjust commented-out diagnostic log statement in parser.rs.
Graydon Hoare
2011-02-14
1
-1
/
+2
*
Add parse support for expr_ext.
Graydon Hoare
2011-02-14
1
-0
/
+11
*
Expand expr_rec to take its optional trailing 'with' parameter.
Graydon Hoare
2011-02-14
1
-9
/
+32
*
Support indexing pat_lit.
Graydon Hoare
2011-02-10
1
-0
/
+1
*
Add pat_lit to ast, and support parsing it.
Graydon Hoare
2011-02-10
1
-22
/
+21
*
Parse effects and layers in a couple contexts; drop on floor as we have nowhe...
Graydon Hoare
2011-02-10
1
-0
/
+10
*
Cleanup for 'be' statement and comments about future typestate
Brian Anderson
2011-02-10
1
-1
/
+7
*
Parse 'be' statement. Pass tailcall tests. No actual tailcalls yet.
Brian Anderson
2011-02-10
1
-0
/
+7
*
Add support for
Rafael Avila de Espindola
2011-02-07
1
-1
/
+12
*
Parse function declarations.
Rafael Ávila de Espíndola
2011-02-04
1
-9
/
+29
*
Factor the parsing of "type foo" into parse_type_decl.
Rafael Ávila de Espíndola
2011-02-04
1
-9
/
+11
*
Add most of the plumbing for native items and add support for parsing native ...
Rafael Ávila de Espíndola
2011-02-02
1
-1
/
+34
*
Add very minimal support for native modules. For now they must be empty.
Rafael Ávila de Espíndola
2011-02-01
1
-0
/
+19
*
Implement 'else if'
Graydon Hoare
2011-02-01
1
-10
/
+32
*
Teach rustc to fail
Brian Anderson
2011-01-28
1
-0
/
+6
*
Correctly handle "import foo = bar.zed;".
Rafael Ávila de Espíndola
2011-01-28
1
-7
/
+21
*
First step for supporting "case (foo.bar(?zed))": Change the ast of
Rafael Ávila de Espíndola
2011-01-27
1
-2
/
+3
*
Do better at parsing expr_paths with type arguments.
Graydon Hoare
2011-01-24
1
-19
/
+23
*
Switch from booleans to symbolic tags in a few places.
Graydon Hoare
2011-01-24
1
-23
/
+28
*
Teach parser to recognize ITER keyword as item-start.
Graydon Hoare
2011-01-24
1
-0
/
+1
*
Teach AST, parser, folder about iter items.
Graydon Hoare
2011-01-21
1
-8
/
+24
*
Adjust AST encoding, teach fold about linear for loops.
Graydon Hoare
2011-01-20
1
-11
/
+20
*
typo
Rafael Ávila de Espíndola
2011-01-20
1
-1
/
+1
*
Teach ast and parser about linear for expressions.
Graydon Hoare
2011-01-20
1
-28
/
+55
*
One last refactoring of the import handling:
Rafael Ávila de Espíndola
2011-01-18
1
-1
/
+2
*
Change single-ident expr_ident to greedy/fat multi-ident expr_path, to handle...
Graydon Hoare
2011-01-13
1
-34
/
+68
*
Change mod_index_entry to point directly to items and view_items.
Rafael Ávila de Espíndola
2011-01-12
1
-46
/
+8
*
Sketch support for reading multi-file crates in rustc. Add test, not yet work...
Graydon Hoare
2011-01-10
1
-32
/
+138
*
Add names from imports to the namespace.
Rafael Ávila de Espíndola
2011-01-04
1
-2
/
+5
*
Add support for looking up a name introduced by a 'use'.
Rafael Ávila de Espíndola
2011-01-04
1
-7
/
+16
*
Refactor the view_item code so that it is similar to the code used for
Rafael Ávila de Espíndola
2011-01-04
1
-19
/
+34
*
Rename use_or_import to view_item.
Rafael Ávila de Espíndola
2011-01-04
1
-5
/
+5
*
Split driver between parsing source files and crate files, by extension. Add ...
Graydon Hoare
2011-01-03
1
-1
/
+8
*
Actually return the correct node from the parser.
Graydon Hoare
2011-01-03
1
-2
/
+1
*
Remove missed debug chatter.
Graydon Hoare
2011-01-03
1
-1
/
+0
*
Add restricted-parse mode, and parse bind expressions.
Graydon Hoare
2010-12-31
1
-10
/
+68
*
Parse local item decls.
Graydon Hoare
2010-12-31
1
-6
/
+36
*
Index tag and obj items in decl stmts.
Graydon Hoare
2010-12-31
1
-0
/
+6
*
Record the ast of uses and imports.
Rafael Ávila de Espíndola
2010-12-30
1
-21
/
+45
*
Parse 'import' directives in rustc.
Rafael Ávila de Espíndola
2010-12-24
1
-0
/
+44
*
Parse 'use' directives in rustc.
Rafael Ávila de Espíndola
2010-12-24
1
-0
/
+47
*
Sketch trans_vtbl.
Graydon Hoare
2010-12-16
1
-2
/
+3
*
Add ty_obj to ast and parser.
Graydon Hoare
2010-12-14
1
-7
/
+36
*
Move call_expr parse rule to the place where it needs to be to understand com...
Graydon Hoare
2010-12-14
1
-14
/
+13
*
Add obj items to AST and parser.
Graydon Hoare
2010-12-14
1
-26
/
+83
*
rustc: Add a definition ID to tag patterns
Patrick Walton
2010-12-12
1
-2
/
+2
*
rustc: Resolve pattern bindings
Patrick Walton
2010-12-10
1
-1
/
+20
*
rustc: Add def ids to pattern bindings
Patrick Walton
2010-12-10
1
-1
/
+1
*
Fix another bug in expr_index parse rule.
Graydon Hoare
2010-12-09
1
-1
/
+1
[next]