about summary refs log tree commit diff
path: root/src/comp/syntax
AgeCommit message (Expand)AuthorLines
2011-08-15Allow `[a, b, ..., c]` transcription patterns in MBE.Paul Stansifer-24/+42
2011-08-15Rename a field (so that macros can mention it).Paul Stansifer-5/+5
2011-08-15Change `node_id`s when expanding, to avoid duplicates.Paul Stansifer-9/+23
2011-08-15Add a syntax extension to log syntax, for debugging macros.Paul Stansifer-3/+20
2011-08-15Add a layer of boxing as a hack; this code can segfault otherwise.Paul Stansifer-5/+6
2011-08-15Add backtraces for syntax problems.Paul Stansifer-64/+60
2011-08-15Check for nonconsistent macro names.Paul Stansifer-1/+11
2011-08-15rustc: Parse and typecheck unique pointersPatrick Walton-1/+8
2011-08-15rustc: Unbreak "3 as uint < 5u"Patrick Walton-49/+59
2011-08-15rustc: Accept <T> for type parameters in type and item declarationsPatrick Walton-4/+14
2011-08-15Removed spawn and task from the parser. Updated all the tests except for the ...Eric Holk-0/+4
2011-08-15Fix bad argument type of pprust::print_typeMarijn Haverbeke-27/+25
2011-08-15Add tuple patternsMarijn Haverbeke-11/+38
2011-08-15Make tuples constructableMarijn Haverbeke-11/+26
2011-08-15Tuple fields are immutableMarijn Haverbeke-21/+8
2011-08-15Tuple types back, not constructable yetMarijn Haverbeke-0/+34
2011-08-14Revert "Make [] and ~[] both construct ivecs"Brian Anderson-1/+1
2011-08-12Remove typestate workaround that's no longer necessaryTim Chevalier-4/+1
2011-08-12Make [] and ~[] both construct ivecsBrian Anderson-1/+1
2011-08-12Remove the last remaining vec expressions in rustcBrian Anderson-3/+3
2011-08-12Add an ivec interface to the #fmt library functionsBrian Anderson-4/+4
2011-08-12Remove std::vecBrian Anderson-2/+0
2011-08-12Rename std::termivec to std::termBrian Anderson-5/+5
2011-08-12Hide even more exports from std::vecBrian Anderson-2/+0
2011-08-12Rename std::ioivec to std::ioBrian Anderson-24/+24
2011-08-12Rename str::connect_ivec to str::connectBrian Anderson-1/+1
2011-08-12Rename std::str::unsafe_from_bytes_ivec to unsafe_from_bytesBrian Anderson-5/+5
2011-08-12Convert all uses of unsafe_from_bytes to unsafe_from_bytes_ivecBrian Anderson-5/+5
2011-08-12Remove str::from_bytesBrian Anderson-4/+5
2011-08-12Remove vecs from simplextBrian Anderson-29/+21
2011-08-12Begin removing vecs from #fmtBrian Anderson-9/+9
2011-08-10Introduce a ty_infer ast node and use it instead of option::t[ty].Michael Sullivan-35/+30
2011-08-10Eliminate the last vestiges of init_recv.Michael Sullivan-2/+1
2011-08-10Remove dead keywords from parser.Graydon Hoare-2/+0
2011-08-10Some trivial cleanup.Michael Sullivan-30/+1
2011-08-09Remove support for the ivec T[] syntax.Erick Tryzelaar-34/+15
2011-08-09Port the compiler to the ivec type [T] syntax.Erick Tryzelaar-211/+212
2011-08-09Change the ivec type syntax to [T].Erick Tryzelaar-14/+8
2011-08-08Add new arg-passing mode 'move' denoted with '-T'. Translate as pass-by-value...Graydon Hoare-1/+4
2011-08-05rustc: Parse "inline". Also write it into metadata.Patrick Walton-13/+20
2011-08-05rustc: Add inlineness to the fn decl insteadPatrick Walton-0/+8
2011-08-05Revert "rustc: Introduce the concept of inline to the AST"Patrick Walton-34/+25
2011-08-05rustc: Introduce the concept of inline to the ASTPatrick Walton-25/+34
2011-08-04rustc: Generate shapesPatrick Walton-0/+4
2011-08-03Make the pretty printer put trailing newlines at the end of files.Michael Sullivan-0/+3
2011-08-03Add #concat_idents[] and #ident_to_str[]Paul Stansifer-8/+53
2011-08-03parse_crate_from_source_str takes a parse_sess, not codemapBrian Anderson-2/+1
2011-08-03Pretty-print kinds of type paramsBrian Anderson-0/+9
2011-08-03Disambiguate unop statements in pretty-printer. Closes #674Brian Anderson-1/+44
2011-08-03Make ast::pat_bindings an iteratorMarijn Haverbeke-15/+21