aboutsummaryrefslogtreecommitdiff
path: root/test/self_hosted.zig
AgeCommit message (Expand)Author
2016-04-19add optional continue expression to while loopAndrew Kelley
2016-04-19fix casting with imported symbol not workingAndrew Kelley
2016-04-19enum init uses container init syntax instead of fn callAndrew Kelley
2016-04-19add test for public enumsAndrew Kelley
2016-04-19implement constant initialization of enum valuesAndrew Kelley
2016-04-18rearrange standard library a bitAndrew Kelley
2016-04-18move 2 tests to self hosted landAndrew Kelley
2016-04-14move more tests to self-hosted landAndrew Kelley
2016-04-14fix crash with generic function and implicit castAndrew Kelley
2016-04-13eval: support array literalsAndrew Kelley
2016-04-12more eval tests and fix eval call analyze codeAndrew Kelley
2016-04-12passing all testsAndrew Kelley
2016-04-11unsigned ints implicitly cast to signed ints when they fitAndrew Kelley
2016-04-10move some tests into self hostedAndrew Kelley
2016-04-10fix crash when casting undefined to sliceAndrew Kelley
2016-04-09goto: jumping out of scope runs defersAndrew Kelley
2016-04-09re-introduce gotoAndrew Kelley
2016-04-09fix debug symbols regression after llvm 3.8.0Andrew Kelley
2016-04-09implement @err_name builtin functionAndrew Kelley
2016-04-08support hex escapes in string literalsAndrew Kelley
2016-04-08fix crash when passing empty string to functionAndrew Kelley
2016-04-08update cat example, refactor stdAndrew Kelley
2016-04-07fix segfault in generic functionsAndrew Kelley
2016-04-07generic functions use correct type for generic argsAndrew Kelley
2016-04-07support multiple generic function instancesAndrew Kelley
2016-04-06ability to compare function pointers at compile timeAndrew Kelley
2016-04-06support simple generic functionsAndrew Kelley
2016-04-03add multiline string literalAndrew Kelley
2016-03-01rewrite how importing worksAndrew Kelley
2016-02-13add @ctz, @clz and compiler_rt implementationAndrew Kelley
2016-02-12i386 supportAndrew Kelley
2016-02-11add @compile_var("os") and @compile_var("arch")Andrew Kelley
2016-02-09if statements can be const expr evaluatedAndrew Kelley
2016-02-09std: fix parse_u64 implementation and add testAndrew Kelley
2016-02-07array.len generates a constant number literal expressionAndrew Kelley
2016-02-07remove ptr field access of arraysAndrew Kelley
2016-02-07implement @const_evalAndrew Kelley
2016-02-07blocks with one statement pass constant expression evalAndrew Kelley
2016-02-07ability to explicitly cast maybe pointers to each otherAndrew Kelley
2016-02-07unreachable return type can cast to any other return typeAndrew Kelley
2016-02-06add test for ?? return and add const expr eval for ? prefix opAndrew Kelley
2016-02-06parser recognizes %return in a prefix op expressionAndrew Kelley
2016-02-05update for loop syntaxAndrew Kelley
2016-02-04support variable in switch expression prongsAndrew Kelley
2016-02-04no namespace required when switching on enumAndrew Kelley
2016-02-04switch statements resolve peer compatibilityAndrew Kelley
2016-02-04codegen: fix switch expressions for enums with payloadsAndrew Kelley
2016-02-04ability to explicitly cast bool to intAndrew Kelley
2016-02-04for loop supports break and continueAndrew Kelley
2016-02-04implement constant values for enums with payloadAndrew Kelley