about summary refs log tree commit diff
path: root/src/comp/front/test.rs
AgeCommit message (Collapse)AuthorLines
2012-03-02Move src/comp to src/rustcGraydon Hoare-470/+0
2012-02-15make mut a keyword synonymous with mutableNiko Matsakis-7/+7
first step towards issue #1273
2012-02-09Remove some pointless importsMarijn Haverbeke-1/+0
2012-02-06Handle built-in typenames in the resolve pass, rather than in parserMarijn Haverbeke-2/+3
Closes #1728 Comments out a section of debuginfo.rs. This code was already broken (only being called when --xg was passed, and only working on trivial programs).
2012-02-05infer modes rather than overwriting with expected tyNiko Matsakis-1/+1
2012-01-31Change option::t to optionTim Chevalier-1/+1
Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming).
2012-01-30Change all ternary ops to if/then/elsePaul Woolcock-1/+1
All the files below had at least one instance of the ternary operator present in the source. All have been changed to the equivalent if/then/else expression.
2012-01-23Allow ast_fold_precursor to change the span.Kevin Atkinson-1/+1
This involved changing the prototype for the callbacks to thread the span though. A wrapper function, fold::wrap, can be used to wrap the old style callbacks.
2012-01-19Use fn~ to simplify the core::test interfaceBrian Anderson-10/+1
2012-01-17rustc: Allow std to be built as a test runnerBrian Anderson-3/+16
2012-01-12Make driver::session::session no longer an objectMarijn Haverbeke-1/+2
Rather, it is now a struct where properties like opts are accessed directly, and the error-reporting methods are part of a static impl (with the same name as the type).
2012-01-09Change all uses of 'when' in alt-patterns to 'if'Austin Seipp-1/+1
Issue #1396
2012-01-05rustc: Allow the test runner to run unexported testsBrian Anderson-1/+4
2012-01-05rustc: Configure out #[test] functions when not testingBrian Anderson-0/+17
2012-01-05require a non-semi expr acting as a stmt to have unit return typeNiko Matsakis-1/+1
2012-01-05Switch to new param kind bound syntaxMarijn Haverbeke-1/+1
And remove support for the old syntax
2011-12-29split proto from fn_decl, as not all fn_decls know the proto.Niko Matsakis-6/+4
this will address the (crashing) new test added.
2011-12-22Merge branch 'master' of github.com:graydon/rustGraydon Hoare-25/+13
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-6/+6
#debug.
2011-12-22Unify some data structures in syntax::ast that were doing the same thingMarijn Haverbeke-25/+13
As a preparation to removing some duplication in typeck.
2011-12-19resolve capture clausesNiko Matsakis-6/+3
2011-12-16reorder args to the various vec, option fns so blk comes lastNiko Matsakis-3/+3
2011-12-14change syntax from lambda[send] to sendfnNiko Matsakis-1/+0
2011-12-14push changes through to get things compiling, if not running.Niko Matsakis-1/+10
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-1/+1
2011-12-06Fix next-node-id "hackasaurus" in comp/front/test.rs.Graydon Hoare-37/+25
2011-11-30Box ast::path valuesMarijn Haverbeke-14/+14
It seems inefficient to copy them around. Let's measure whether that's actually > the case
2011-11-23Allow import directives in any blockMarijn Haverbeke-0/+1
Closes #49
2011-11-18Update stdlib, compiler, and tests to new kind systemMarijn Haverbeke-1/+3
This involved adding 'copy' to more generics than I hoped, but an experiment with making it implicit showed that that way lies madness -- unless enforced, you will not remember to mark functions that don't copy as not requiring copyable kind. Issue #1177
2011-11-17remove compile-command from local variable blocksNiko Matsakis-1/+0
2011-11-10Cleanup unused importsHaitao Li-1/+1
2011-11-01Add should_fail annotation for unit testsMatt Brubeck-3/+19
This allows test cases to assert that a function is expected to fail. Tests annotated with "should_fail" will succeed only if the function fails.
2011-10-29Add the ability to ignore tests by compiler configBrian Anderson-3/+14
[test] [ignore(cfg(target_os = "win32"))]
2011-10-25Update our code to new type parameter kind syntaxMarijn Haverbeke-1/+1
Closes #1067
2011-10-21Change the way block calls are parsed, mark them as block-calls.Marijn Haverbeke-3/+3
This makes it possible to omit the semicolon after the block, and will cause the pretty-printer to properly print such calls (if pretty-printing of blocks wasn't so broken). Block calls (with the block outside of the parentheses) can now only occur at statement level, and their value can not be used. When calling a block-style function that returns a useful value, the block must be put insde the parentheses. Issue #1054
2011-10-20Remove unused empty_fn_ty from rustc::front::testBrian Anderson-9/+0
2011-10-20Merge ast::proto_shared and ast::proto_closureBrian Anderson-2/+2
Now they are both just proto_shared and proto_shared takes an argument indicating that it is sugared as 'lambda'
2011-10-20Rename ast::proto_fn to ast::proto_sharedBrian Anderson-2/+2
2011-10-20Make fn denote a bare function. Convert fn to fn@ as neededBrian Anderson-2/+2
2011-10-20Convert the test runners to typesafe spawnBrian Anderson-2/+58
Issue #1022
2011-10-12make a good error msg if you try to use an unsafe fn for a testNiko Matsakis-7/+20
2011-10-12improve the span used in test generationNiko Matsakis-6/+8
2011-10-12make treatment of unchecked/unsafe blocks more uniformNiko Matsakis-2/+2
also repair various errors in the parser related to such blocks. rename checked_blk to default_blk to reflect the fact that it inherits its purity from the surrounding context.
2011-10-12Extend the unchecked block stuff to allow unsafe blocks as well.Niko Matsakis-2/+3
2011-10-10Make vectors and strings immediates againMarijn Haverbeke-1/+1
There's no good reason to force them to be spilled anymore. Some pieces of trans become more elegant this way, and less stack allocs and load/stores are needed. Issue #1021
2011-10-07Give up on providing a by-value version of map, convert fold over toMarijn Haverbeke-1/+1
passing pointers by ref Issue #1008
2011-10-07Parse and typecheck by-value and by-ref arg specsMarijn Haverbeke-1/+1
Add sprinkle && throughout the compiler to make it typecheck again. Issue #1008
2011-09-19Break fold's circular reference during unwindingBrian Anderson-2/+0
This converts the AST fold into a resource that breaks it's own circular reference (just a temporary workaround until GC), so that failure during fold will unwind correctly. Issue #936
2011-09-16Remove autoderef for callsMarijn Haverbeke-2/+2
We were only using it in a single place, and there for no discernable reason (probably as part of the bare-fn-vals-are-not-copyable plan). It seems more surprising than useful.
2011-09-14Rename ast::controlflow to ast::ret_styleMarijn Haverbeke-3/+3
It will include information about returning by alias.