aboutsummaryrefslogtreecommitdiff
path: root/test/cases
AgeCommit message (Expand)Author
2018-08-22fix incorrectly generating an unused const fn globalAndrew Kelley
2018-08-22allow implicit cast from *[N]T to ?[*]T (#1398)Raul Leal
2018-08-21fix linuxAndrew Kelley
2018-08-03fix tagged union initialization with a runtime voidAndrew Kelley
2018-08-03better support for `_` identifierkristopher tate
2018-08-02pull request fixupsAndrew Kelley
2018-08-02test/cases/cancel.zig: update suspend to use @handle();kristopher tate
2018-08-02test/cases/coroutines.zig: update suspend to use @handle();kristopher tate
2018-08-02test/cases/coroutines.zig: test for immediate resume inside of suspend with @...kristopher tate
2018-08-02test/cases/coroutines.zig: update test to reflect that the promise symbol is ...kristopher tate
2018-08-02test/cases/coroutine_await_struct.zig: update test to reflect that the promis...kristopher tate
2018-08-02test/cases/coroutines.zig: remove dummy assert used for testing;kristopher tate
2018-08-02src/codegen.cpp: remove `add_node_error` from `ir_render_handle`;kristopher tate
2018-08-02test/cases/couroutines.zig: test @handle();kristopher tate
2018-07-30add behavior tests for cancel semanticsAndrew Kelley
2018-07-27suspend sets suspend bitAndrew Kelley
2018-07-19fix generation of error defers for fns inside fnsAndrew Kelley
2018-07-17fix @setEvalBranchQuota not respected in generic fn callsAndrew Kelley
2018-07-16allow implicit cast of undefined to optionalAndrew Kelley
2018-07-16all integer sizes are available as primitivesAndrew Kelley
2018-07-14add an assertion to the testAndrew Kelley
2018-07-14codegen: Store returned value if type is 'handle_is_ptr' and function is not ...Eduardo Sánchez Muñoz
2018-07-13allow == for comparing optional pointersAndrew Kelley
2018-07-07add @popCount intrinsicAndrew Kelley
2018-07-06fix iterating over a void sliceAndrew Kelley
2018-07-04fix await on early return when return type is structAndrew Kelley
2018-06-30Merge pull request #1167 from ziglang/comptime-array-by-valueJimmi Holst Christensen
2018-06-28Implement const_values_equal for array typeJimmi HC
2018-06-28Correct hex-float parsingMarc Tiehuis
2018-06-27fix coroutine accessing freed memoryAndrew Kelley
2018-06-27fix comptime @tagName crashing sometimesAndrew Kelley
2018-06-27simplify comptime floating-point @divTruncBen Noordhuis
2018-06-27add f16 typeBen Noordhuis
2018-06-27scope variables in floating point cast testsBen Noordhuis
2018-06-26fix crash for optional pointer to empty structAndrew Kelley
2018-06-22clean up self hosted main. delete unsupported commandsAndrew Kelley
2018-06-21add casting docs, __extenddftf2, and __extendsftf2Andrew Kelley
2018-06-21Add test caseIsaac Hier
2018-06-20fix f128 remainder division bugBen Noordhuis
2018-06-20zig fmtAndrew Kelley
2018-06-20fix runtime fn ptr equality codegenAndrew Kelley
2018-06-19fix calling method with comptime pass-by-non-copyign-value self argAndrew Kelley
2018-06-19`@floatToInt` now has safety-checked undefined behaviorAndrew Kelley
2018-06-19Merge pull request #1136 from alexnask/typeinfo_improvementsAndrew Kelley
2018-06-19@typeInfo now uses optional types instead of @typeOf(undefined)Alexandros Naskos
2018-06-19remove enum to/from int casting syntax; add `@enumToInt`/`@intToEnum`Andrew Kelley
2018-06-18remove error to/from int casting syntax; add `@errorToInt`/`@intToError`Andrew Kelley
2018-06-18remove []u8 casting syntax. add `@bytesToSlice` and `@sliceToBytes`Andrew Kelley
2018-06-18remove error set casting syntax. add `@errSetCast`Andrew Kelley
2018-06-18fix compiler crash when using @intToFloat with float literalAndrew Kelley