]> git.lizzy.rs Git - rust.git/history - src/comp/syntax/parse/parser.rs
Add missing arm, so pretty-printing the statement 'copy 1;' does not die.
[rust.git] / src / comp / syntax / parse / parser.rs
2011-09-10 Jesse RudermanAdd missing arm, so pretty-printing the statement ...
2011-09-08 Graydon HoareMerge pull request #867 from paulstansifer/master
2011-09-06 Tim ChevalierMerge remote-tracking branch 'graydon/master'
2011-09-03 Brian AndersonRename ty_istr to ty_str. Issue #855
2011-09-03 Brian AndersonStop parsing transitional istr forms. Issue #855
2011-09-03 Brian AndersonReformat. Issue #855
2011-09-02 Brian AndersonRemove lots of estr code from rustc. Issue #855
2011-09-02 Brian AndersonRename std::istr to std::str. Issue #855
2011-09-01 Brian AndersonParse "",str as istrs. Pretty print istrs as "",str...
2011-09-01 Brian AndersonRemove std::str. Issue #855
2011-09-01 Brian AndersonAllow istrs as patterns. Issue #855
2011-09-01 Marijn HaverbekeMake resolve recognize upvars
2011-08-29 Marijn HaverbekeImplement non-internal ivecs
2011-08-27 Brian AndersonConvert rustc::syntax::codemap to istrs. Issue #855
2011-08-27 Brian AndersonConvert parser to istrs. Issue #855
2011-08-27 Brian AndersonConvert rustc::syntax::eval to istrs. Issue #855
2011-08-27 Brian AndersonConvert rustc::syntax::token to istrs. Issue #855
2011-08-27 Brian AndersonConvert lexer to istrs. Issue #855
2011-08-27 Brian AndersonConvert rest of the AST to istrs. Issue #855
2011-08-27 Brian AndersonConvert ast::ident to istr. Issue #855
2011-08-27 Brian AndersonConvert std::map::new_str_hash to istrs. Issue #855
2011-08-27 Brian AndersonConvert std::io to istrs. Issue #855
2011-08-27 Brian AndersonConvert std::fs to istrs. Issue #855
2011-08-26 Tim ChevalierRemove remaining use of 'pred' and make 'pred' a non...
2011-08-26 Tim ChevalierRemove typestate workaround that's no longer necessary
2011-08-26 Tim ChevalierSupport unchecked blocks
2011-08-24 Tim Chevalierhmm, this should have been in the last commit. Oops.
2011-08-24 Tim ChevalierChange "pred" to "pure fn" (but still accept "pred")
2011-08-23 Graydon HoareAdd kind-checking for assign-op, copy, ret, be, fail...
2011-08-23 Brian AndersonFix pretty-printing of istr literals. Issue #855
2011-08-22 Brian AndersonMove functions from syntax::ast to syntax::ast_util
2011-08-22 Marijn HaverbekeImplement pattern guards
2011-08-22 Marijn HaverbekeDrop arguments on the caller side, not the callee
2011-08-20 Brian AndersonStop parsing ~[] vector syntax
2011-08-20 Brian AndersonStop parsing .() indexes
2011-08-20 Brian AndersonReformat
2011-08-19 Brian AndersonParse x[y] as indexes
2011-08-19 Lindsey KuperGetting rid of superfluous log statement.
2011-08-18 Brian AndersonChange ast::ty_ivec, ty::ty_ivec to ty_vec
2011-08-18 Brian AndersonRemove seq_kind from ast::expr_vec
2011-08-18 Marijn HaverbekeRemove or _-prefix all unused function arguments
2011-08-17 Brian AndersonStop parsing old-style vec types
2011-08-17 Brian AndersonAllow multiple imports in a single statement
2011-08-17 Brian AndersonAllow multiple exports in a single export statement...
2011-08-16 Erick TryzelaarRemove support for expr[T] syntax.
2011-08-16 Erick TryzelaarRemove support for foo[T] declaration syntax.
2011-08-16 Erick TryzelaarRemove type parameter and vec/port/chan foo[T] syntax.
2011-08-16 Erick TryzelaarPort the compiler to the expr foo::<T> syntax.
2011-08-16 Erick TryzelaarPort the compiler to foo<T> decl syntax.
2011-08-16 Erick TryzelaarPort the compiler to the typaram foo<T> syntax.
2011-08-16 Erick TryzelaarChange expr foo[T] syntax to foo::<T>.
2011-08-16 Erick TryzelaarChange declaration type parameter syntax to foo<T>.
2011-08-16 Erick TryzelaarChange type parameter syntax to foo<T>.
2011-08-16 Eric HolkRemoving tasks, ports and chans from the compiler.
2011-08-16 Brian AndersonRename std::ivec to std::vec
2011-08-16 Brian AndersonRevert "Revert "Make [] and ~[] both construct ivecs""
2011-08-16 Eric HolkRemoved trans_comm.rs from the compiler. Updating aio...
2011-08-16 Lindsey KuperThe wonky for...in... whitespace was bothering me....
2011-08-15 Michael SullivanParse type inferred lambda-block expressions.
2011-08-15 Graydon HoareAdd operator 'copy', translates as fall-through.
2011-08-15 Paul StansiferUse span stacks to track macro expansion for less troub...
2011-08-15 Paul StansiferMake spans into stacks (to store expansion backtraces).
2011-08-15 Paul StansiferRename a field (so that macros can mention it).
2011-08-15 Patrick Waltonrustc: Parse and typecheck unique pointers
2011-08-15 Patrick Waltonrustc: Unbreak "3 as uint < 5u"
2011-08-15 Patrick Waltonrustc: Accept <T> for type parameters in type and item...
2011-08-15 Eric HolkRemoved spawn and task from the parser. Updated all...
2011-08-15 Marijn HaverbekeAdd tuple patterns
2011-08-15 Marijn HaverbekeMake tuples constructable
2011-08-15 Marijn HaverbekeTuple types back, not constructable yet
2011-08-14 Brian AndersonRevert "Make [] and ~[] both construct ivecs"
2011-08-13 Tim ChevalierRemove typestate workaround that's no longer necessary
2011-08-12 Brian AndersonMake [] and ~[] both construct ivecs
2011-08-12 Brian AndersonRename std::ioivec to std::io
2011-08-11 Michael SullivanIntroduce a ty_infer ast node and use it instead of...
2011-08-11 Graydon HoareRemove dead keywords from parser.
2011-08-09 Erick TryzelaarRemove support for the ivec T[] syntax.
2011-08-09 Erick TryzelaarPort the compiler to the ivec type [T] syntax.
2011-08-09 Erick TryzelaarChange the ivec type syntax to [T].
2011-08-08 Graydon HoareAdd new arg-passing mode 'move' denoted with '-T'....
2011-08-05 Eric HolkMerge branch 'master' of github.com:graydon/rust
2011-08-05 Patrick Waltonrustc: Parse "inline". Also write it into metadata.
2011-08-05 Patrick Waltonrustc: Add inlineness to the fn decl instead
2011-08-05 Patrick WaltonRevert "rustc: Introduce the concept of inline to the...
2011-08-05 Patrick Waltonrustc: Introduce the concept of inline to the AST
2011-08-03 Brian Andersonparse_crate_from_source_str takes a parse_sess, not...
2011-08-02 Brian AndersonUse ioivec::read_whole_file_str in a few places
2011-08-02 Brian AndersonCompiler accepts input from stdin when source file...
2011-08-01 Marijn HaverbekePartially implement destructuring locals
2011-07-29 Marijn HaverbekeRemove unreachable statements
2011-07-29 robarnoldMerge pull request #781 from robarnold/upstream-stable
2011-07-29 Marijn HaverbekeParse anonymous objs in statement position
2011-07-29 Marijn HaverbekeRemove support for obj dtors
2011-07-28 Lindsey KuperThe names 'outer' and 'inner' make more sense than...
2011-07-28 Paul StansiferChange macro syntax to accept a single expr, not a...
2011-07-28 Graydon HoareParse, store and print type parameter kind constraints.
2011-07-28 Graydon HoareRemove vestiges of "layers", insert skeletal do-nothing...
2011-07-27 Marijn HaverbekeNo longer allow 'case' keyword before patterns
2011-07-27 Marijn HaverbekeFix damage done by the pretty-printer
2011-07-27 Marijn HaverbekeReformat for new syntax
next