aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.cpp
AgeCommit message (Expand)Author
2018-03-22ability to use async function pointersAndrew Kelley
2018-03-13Merge branch 'master' of https://github.com/zig-lang/zigAndrea Orru
2018-03-13fix casting a function to a pointer causing compiler crashAndrew Kelley
2018-03-13Panic instead of segfault when returning generic type from functionsAndrea Orru
2018-03-12some return types disqualify comptime fn call cachingAndrew Kelley
2018-03-12don't memoize comptime fn calls that access comptime mutable stateAndrew Kelley
2018-03-10fix await multithreaded data raceAndrew Kelley
2018-03-09don't memoize comptime functions if they can mutate state via parametersAndrew Kelley
2018-03-08enums with 1 field and explicit tag type still get the tag typeAndrew Kelley
2018-03-07add compile error for using @tagName on extern unionAndrew Kelley
2018-03-06fix missing compile error for returning error from void async functionAndrew Kelley
2018-03-06turn assertion into compile error for using var as return typeAndrew Kelley
2018-03-06var is no longer a pseudo-type, it is syntaxAndrew Kelley
2018-03-06ptrCast builtin now gives an error for removing const qualifierAndrew Kelley
2018-03-01Merge remote-tracking branch 'origin/master' into asyncAndrew Kelley
2018-03-01implementation of awaitAndrew Kelley
2018-02-28implement coroutine resumeAndrew Kelley
2018-02-28another workaround for llvm coroutinesAndrew Kelley
2018-02-28different way of fixing previous commitAndrew Kelley
2018-02-28fix assert on self-referencing function ptr fieldBen Noordhuis
2018-02-27Revert "llvm coroutine workaround: sret functions return sret pointer"Andrew Kelley
2018-02-27revert workaround for alloc and free as coro paramsAndrew Kelley
2018-02-27llvm coroutine workaround: sret functions return sret pointerAndrew Kelley
2018-02-27Revert "another llvm workaround for getelementptr"Andrew Kelley
2018-02-27another llvm workaround for getelementptrAndrew Kelley
2018-02-26workaround llvm coro transformationsAndrew Kelley
2018-02-26parse await and suspend syntaxAndrew Kelley
2018-02-25async functions are allowed to accept zig typesAndrew Kelley
2018-02-25fix handle_is_ptr for promise typeAndrew Kelley
2018-02-25codegen for coro_id instructionAndrew Kelley
2018-02-25codegen for calling an async functionAndrew Kelley
2018-02-23fix type_is_codegen_pointer being used incorrectlyAndrew Kelley
2018-02-23implement Zig IR for async functionsAndrew Kelley
2018-02-21implement IR analysis for async function callsAndrew Kelley
2018-02-20add promise typeAndrew Kelley
2018-02-20parse async fn definitionsAndrew Kelley
2018-02-20parse async fn calls and cancel expressionsAndrew Kelley
2018-02-15fix compiler crash when struct contains...Andrew Kelley
2018-02-09fix build runner on windowsAndrew Kelley
2018-02-08Merge remote-tracking branch 'origin/master' into error-setsAndrew Kelley
2018-02-07DRY 'is slice?' conditionals in parser (#750)Ben Noordhuis
2018-02-04add --forbid-libraryAndrew Kelley
2018-02-03*WIP* error sets - an inferred error set can end up being the global oneAndrew Kelley
2018-02-02*WIP* error sets - correctly resolve inferred error setsAndrew Kelley
2018-02-02*WI* error sets - basic support workingAndrew Kelley
2018-02-02*WIP* error sets - rewrite "const cast only" functionAndrew Kelley
2018-02-01*WIP* error sets - allow peer type resolution to create new error setAndrew Kelley
2018-02-01*WIP* error sets - fix implicit castAndrew Kelley
2018-01-31*WIP* error sets converting std libAndrew Kelley
2018-01-31fix assertion fail when using global var number literalAndrew Kelley