about summary refs log tree commit diff
path: root/src/test/run-pass/crate-attributes.rc
AgeCommit message (Collapse)AuthorLines
2012-11-26Remove the crate languageBrian Anderson-13/+0
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+2
#[legacy_exports];
2011-11-24rustc: Add a path attribute for crate directivesHaitao Li-1/+2
The path information was an optional "filename" component of crate directive AST. It is now replaced by an attribute with metadata named "path". With this commit, a directive mod foo = "foo.rs"; should be written as: #[path = "foo.rs"] mod foo; Closes issue #906.
2011-06-28Support attaching attributes to modules via the crate file. Issue #487Brian Anderson-0/+4
2011-06-16rustc: Parse attributes in crate filesBrian Anderson-1/+4
Issue #487
2011-06-16rustc: Parse inner items of file-level modules linked from crate filesBrian Anderson-0/+3
Issue #487