]> git.lizzy.rs Git - rust.git/history - src/comp/syntax/ast.rs
Remove proto_sugar and 'lambda' as keyword, commit to fn@.
[rust.git] / src / comp / syntax / ast.rs
2012-01-10 Graydon HoareRemove proto_sugar and 'lambda' as keyword, commit...
2012-01-05 Niko Matsakisrequire a non-semi expr acting as a stmt to have unit...
2012-01-03 Brian AndersonMerge pull request #1392 from Lenny222/list
2011-12-30 Niko Matsakissplit proto from fn_decl, as not all fn_decls know...
2011-12-28 Graydon HoareMerge pull request #1385 from Lenny222/quotes
2011-12-28 Graydon HoareMerge pull request #1389 from erickt/master
2011-12-28 Marijn HaverbekeMove the kind datatype to middle::ty
2011-12-28 Marijn HaverbekeChange representation of type params to handle interfac...
2011-12-24 Graydon HoareMerge pull request #1377 from Lenny222/icu
2011-12-23 Marijn HaverbekeCheck impls methods against the type of their iface.
2011-12-23 Marijn HaverbekeParse `iface` items and interface references in `impl...
2011-12-23 Marijn HaverbekeMake ast::ty_method hold a fn_decl, rather than duplica...
2011-12-22 Graydon HoareMerge branch 'master' of github.com:graydon/rust
2011-12-22 Marijn HaverbekeUnify some data structures in syntax::ast that were...
2011-12-21 Graydon HoareSwitch log_expr to carrying a full expr:u32 for level...
2011-12-21 Niko MatsakisMake { || ... } sugar for any type of closure, inferred
2011-12-19 Niko Matsakisimplement capture clauses (move, in particular) and...
2011-12-19 Niko Matsakisresolve capture clauses
2011-12-19 Graydon HoareMerge pull request #1334 from boggle/kmath
2011-12-19 Marijn HaverbekeAdd type argument field to expr_path
2011-12-16 Marijn HaverbekeReserve node_id 0 for the crate top-level module
2011-12-16 Graydon HoareMerge pull request #1317 from boggle/fix1315
2011-12-16 Marijn HaverbekeMake polymorphic impl methods work
2011-12-16 Marijn HaverbekeChange syntax for impl
2011-12-16 Marijn HaverbekeMake uses of self in impls compile
2011-12-16 Marijn HaverbekeParse and resolve implementations.
2011-12-15 Brian AndersonMerge pull request #1307 from elly/cargo
2011-12-15 Niko Matsakismassive refactor of how closures work
2011-12-14 Niko Matsakischange syntax from lambda[send] to sendfn
2011-12-14 Niko Matsakispush changes through to get things compiling, if not...
2011-12-14 Niko Matsakisfirst attempt, not happy with it
2011-12-14 Niko Matsakisdefine ty and update parser for sendable lambdas
2011-12-14 Graydon HoareMerge pull request #1292 from boggle/fix1291
2011-12-14 Graydon HoareCopy first batch of material from libstd to libcore.
2011-12-08 Marijn HaverbekeAllow binding of nested patterns
2011-12-07 Graydon HoareInject the view_items for core in the right place,...
2011-12-07 Graydon HoareRemove stmt_crate_directive, it's vestigial and confusing.
2011-12-07 Marijn HaverbekeChange literal representation to not truncate
2011-12-02 Marijn HaverbekeAllow literal patterns to contain arbitrary literal...
2011-11-30 Marijn HaverbekeBox ast::path values
2011-11-24 Haitao Lirustc: Add a path attribute for crate directives
2011-11-23 Marijn HaverbekeAllow import directives in any block
2011-11-23 Marijn HaverbekeRollback return-by-reference
2011-11-23 Marijn HaverbekeRemove last traces of auth keyword
2011-11-21 Haitao Lirustc: Remove abi from ast::native_mod
2011-11-18 Marijn HaverbekeUpdate stdlib, compiler, and tests to new kind system
2011-11-18 Marijn HaverbekeAdd a pass-by-copy parameter passing convention
2011-11-18 Marijn HaverbekePreparation for kind system overhaul
2011-11-17 Niko MatsakisMerge branch 'master' of github.com:graydon/rust
2011-11-17 Niko Matsakisremove compile-command from local variable blocks
2011-11-16 Haitao LiUse attributes for native module ABI and link name
2011-11-16 Haitao Lirustc: Use link_name attribute for native function
2011-11-10 Brian Andersonrustc: Rename native_abi_c_stack_cdecl to native_abi_cdecl
2011-11-10 Brian Andersonrustc: Rename native_abi_c_stack_stdcall to native_abi_...
2011-11-10 Brian AndersonRemove native "x86stdcall" ABI
2011-11-09 Brian AndersonRemove native "cdecl" ABI
2011-11-07 Brian AndersonRemove native "llvm" ABI
2011-11-07 Brian AndersonRemove native "rust" ABI
2011-10-28 Marijn HaverbekeMake shared kind the default only for generic functions
2011-10-21 Marijn HaverbekeChange the way block calls are parsed, mark them as...
2011-10-21 Marijn HaverbekeDrop support for iter, put, and for-each
2011-10-21 Brian AndersonMerge ast::proto_shared and ast::proto_closure
2011-10-21 Brian AndersonRename ast::proto_fn to ast::proto_shared
2011-10-12 Niko Matsakismake native functions markable as unsafe and incorporat...
2011-10-12 Niko Matsakismake treatment of unchecked/unsafe blocks more uniform
2011-10-12 Niko MatsakisExtend the unchecked block stuff to allow unsafe blocks...
2011-10-12 Niko Matsakisexpand purity to include unsafe
2011-10-11 Brian AndersonIntroduce ast::proto_bare
2011-10-07 Marijn HaverbekeParse and typecheck by-value and by-ref arg specs
2011-10-03 Patrick Waltonrustc: Implement C stack stdcall
2011-09-28 Patrick Waltonrustc: Add a new "C stack cdecl" native ABI
2011-09-28 Brian AndersonRevert "Revert "Implement pattern ranges for all numeri...
2011-09-23 Brian AndersonBegin to support pattern matching on unique boxes
2011-09-21 Marijn HaverbekeRevert "Implement pattern ranges for all numeric types."
2011-09-21 Josh MatthewsImplement pattern ranges for all numeric types.
2011-09-21 Brian AndersonRepresent unique creation as a unop in the AST instead...
2011-09-21 Brian AndersonParse unique box types
2011-09-15 Marijn HaverbekeRequire the parameter that will be referenced to be...
2011-09-15 Marijn HaverbekeForbid assignment to by-reference bindings
2011-09-15 Marijn HaverbekeAdd representation for by-ref let bindings
2011-09-14 Marijn HaverbekeAdd syntax and representation for return-by-mutably...
2011-09-14 Marijn HaverbekeRefactor parse_ret_ty, start parsing by-alias return...
2011-09-14 Marijn HaverbekeRename ast::controlflow to ast::ret_style
2011-09-12 Graydon HoareFactor imports mindlessly.
2011-09-12 Brian AndersonMerge branch 'unwind'
2011-09-12 Marijn HaverbekePretty-print for new arg-mode syntax
2011-09-12 Marijn HaverbekeReformat for new mode syntax, step 1
2011-09-12 Marijn HaverbekeMake the names of the arg mode tag reflect their (revis...
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 AndersonReformat. Issue #855
2011-09-02 Marijn HaverbekeRename ivecs to vecs in the compiler
2011-09-02 Brian AndersonRemove lots of estr code from rustc. Issue #855
2011-09-01 Brian AndersonRemove std::str. Issue #855
2011-09-01 Marijn HaverbekeMake resolve recognize upvars
2011-09-01 Marijn HaverbekeStore arg mode and objfield mutability in their def
2011-08-27 Brian AndersonConvert rest of the AST to istrs. Issue #855
2011-08-27 Brian AndersonRemove ast::identistr. Issue #855
2011-08-27 Brian AndersonConvert ast::ident to istr. Issue #855
next