| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-11-17 | remove compile-command from local variable blocks | Niko Matsakis | -1/+0 | |
| 2011-11-16 | Use attributes for native module ABI and link name | Haitao Li | -5/+10 | |
| This patch changes how to specify ABI and link name of a native module. Before: native "cdecl" mod llvm = "rustllvm" {...} After: #[abi = "cdecl"] #[link_name = "rustllvm"] native mod llvm {...} The old optional syntax for ABI and link name is no longer supported. Fixes issue #547 | ||||
| 2011-11-09 | Add "cdecl" as synonym for "c-stack-cdecl" | Brian Anderson | -5/+5 | |
| 2011-10-24 | move uses of rust ABI in tests to cdecl or c-stack-cdecl as appr | Niko Matsakis | -5/+5 | |
| Note: I found a bug in c-stack-cdecl which codes not permit such native functions to be used as values. I added an xfail-test (c-stack-as-value) documenting it. | ||||
| 2011-09-02 | Reformat. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-09-01 | Convert all uses of #ifmt to #fmt. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-09-01 | Remove some uses of str_buf builtin. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-08-31 | Convert uses of #fmt to #ifmt. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-08-23 | Resolve a number of FIXMEs | Brian Anderson | -2/+1 | |
| 2011-08-20 | Reformat | Brian Anderson | -1/+1 | |
| This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[] | ||||
| 2011-08-12 | Remove all usages of std::vec::vbuf | Brian Anderson | -2/+2 | |
| 2011-08-03 | Remove all xfail-stage0 directives | Brian Anderson | -2/+0 | |
| While it is still technically possible to test stage 0, it is not part of any of the main testing rules and maintaining xfail-stage0 is a chore. Nobody should worry about how tests fare in stage0. | ||||
| 2011-08-03 | Un-xfail more pretty-printing tests | Brian Anderson | -1/+0 | |
| 2011-08-02 | Add xfail-pretty directives to tests that don't pretty-print correctly | Brian Anderson | -0/+1 | |
| Issue #789 | ||||
| 2011-07-27 | Fix damage done by the pretty-printer | Marijn Haverbeke | -2/+2 | |
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -31/+21 | |
| 2011-07-05 | Change ast::meta_name_value to accept any literal, not just string | Brian Anderson | -0/+14 | |
| This isn't useful for much of anything yet, since metadata::encoder doesn't know how to handle the non-string variants. Issue #611 | ||||
| 2011-07-05 | Parse attributes for native items. Closes #609 | Brian Anderson | -0/+12 | |
| 2011-06-28 | Rework how linkage attributes are determined | Brian Anderson | -0/+207 | |
| The meta items within a crate's link attribute are used in linkage: #[link(name = "std", vers = "1.0", custom = "whatever")]; Name and vers are treated specially, and everything else is hashed together into the crate meta hash. Issue #487 | ||||
| 2011-06-28 | Add some helper functions for attributes. Issue #487 | Brian Anderson | -201/+0 | |
| 2011-06-28 | Write metadata for more meta_item types. Issue #487 | Brian Anderson | -0/+2 | |
| 2011-06-22 | rustc: Introduce and parse additional meta_item forms | Brian Anderson | -0/+11 | |
| Examples: #[test], #[link(name = "vers")] Issue #487 | ||||
| 2011-06-21 | test: Add a test for distinguishing attributes from extensions | Brian Anderson | -0/+12 | |
| Issue #487 | ||||
| 2011-06-16 | rustc: Parse crate attributes in standalone .rs files | Brian Anderson | -0/+6 | |
| Issue #487 | ||||
| 2011-06-16 | test: Add a test for outer attributes on the first module in a file | Brian Anderson | -0/+6 | |
| Issue #487 | ||||
| 2011-06-16 | rustc: Parse inner attributes of modules | Brian Anderson | -0/+44 | |
| Issue #487 | ||||
| 2011-06-15 | rustc: Support outer attributes on items that are defined as statements | Brian Anderson | -1/+66 | |
| Issue #487 | ||||
| 2011-06-15 | test: Add missing fn test cases to run-pass/item-attributes.rs | Brian Anderson | -6/+13 | |
| Issue #487 | ||||
| 2011-06-15 | Reformat source tree (minus a couple tests that are still grumpy). | Graydon Hoare | -32/+29 | |
| 2011-06-15 | test: Add tests for multiple outer attributes on items | Brian Anderson | -11/+41 | |
| Issue #487 | ||||
| 2011-06-15 | test: Add test cases for outer attributes on all item types | Brian Anderson | -0/+13 | |
| 2011-06-15 | rustc: Parse module attributes | Brian Anderson | -0/+8 | |
| Issue #487 | ||||
