aboutsummaryrefslogtreecommitdiff
path: root/src/ast_render.cpp
AgeCommit message (Expand)Author
2017-05-09inline function call with builtin function instead...Andrew Kelley
2017-05-04implement else on loops and break can give an expressionAndrew Kelley
2017-05-04implement while for nullables and error unionsAndrew Kelley
2017-05-03remove test and try expressions in favor of if expressionsAndrew Kelley
2017-04-23make undefined as a constant value lazyAndrew Kelley
2017-04-22slicing now returns correct const-nessAndrew Kelley
2017-04-21update syntax for try and nullable unwrappingAndrew Kelley
2017-04-21remove `?return` and `?defer`Andrew Kelley
2017-04-14comptime ({}) should not get an implicit semicolonJosh Wolfe
2017-04-13Merge remote-tracking branch 'origin/parser'Andrew Kelley
2017-04-13typedefpocalypseAndrew Kelley
2017-04-12block statement lists never get fake expressionsJosh Wolfe
2017-04-13ability to inline at function callsiteAndrew Kelley
2017-04-10fix some -Wconversion errorsAndrew Kelley
2017-03-26new unreachable syntaxAndrew Kelley
2017-03-26add comptime top level declarationAndrew Kelley
2017-03-16introduce new test syntaxAndrew Kelley
2017-02-27fix inability to write to global in some casesAndrew Kelley
2017-02-05fix assigning to const ptr through struct or indexAndrew Kelley
2017-02-04remove volatileStore builtin; add volatile pointersAndrew Kelley
2017-02-04ability to set global variable alignment and ...Andrew Kelley
2017-02-03exported global variables get emitted as external in LLVMAndrew Kelley
2017-02-03implement packed structsAndrew Kelley
2017-02-02add try expressionAndrew Kelley
2017-02-02remove ability to mark if and switch as inlineAndrew Kelley
2017-01-23various fixesAndrew Kelley
2017-01-23basic support for functions with variable length argumentsAndrew Kelley
2017-01-22introduce comptime expressionAndrew Kelley
2017-01-16get rid of zeroes literalAndrew Kelley
2017-01-12IR: implement macro for function aliasing function pointerAndrew Kelley
2017-01-11pass some parseh testsAndrew Kelley
2017-01-11pass more testsAndrew Kelley
2017-01-10partially fix parseh commandAndrew Kelley
2016-12-18remove duplicate definition of container_stringAndrew Kelley
2016-12-18IR: all structs anonymousAndrew Kelley
2016-12-17IR: add more instructionsAndrew Kelley
2016-12-13IR: implement maybe return expressionAndrew Kelley
2016-12-12IR: implement memcpy, memset, and slice expressionAndrew Kelley
2016-12-11IR: fix implementation of parsehAndrew Kelley
2016-12-06IR: implement deferAndrew Kelley
2016-12-05IR: implement break and continueAndrew Kelley
2016-12-05IR: implement generic function callsAndrew Kelley
2016-12-04add missing copyright noticesAndrew Kelley
2016-12-04IR: re-organize where state goes to prepare for genericsAndrew Kelley
2016-11-26IR: support goto and labelsAndrew Kelley
2016-11-26IR: support import builtin functionAndrew Kelley
2016-11-26IR: switch expression works with numbersAndrew Kelley
2016-11-24IR: generating a switch statementAndrew Kelley
2016-11-21IR: support unwrap maybe operationAndrew Kelley
2016-11-19IR: error for uncasted null lit variableAndrew Kelley