aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
AgeCommit message (Expand)Author
2017-11-30ability to specify tag type of enumsAndrew Kelley
2017-09-13fix up msvc stuff to make it work on linux and macos tooAndrew Kelley
2017-09-11Add support for MSVCJonathan Marler
2017-09-05fix parseh bugsAndrew Kelley
2017-09-01c-to-zig: return statementAndrew Kelley
2017-08-30align syntax: align(4) instead of align 4Andrew Kelley
2017-08-29introduce align keywordAndrew Kelley
2017-08-14fix tokenization error pointing to wrong characterAndrew Kelley
2017-08-09more intuitive left shift and right shift operatorsAndrew Kelley
2017-07-08better bigint/bigfloat implementationAndrew Kelley
2017-06-17allow trailing commasscurest
2017-06-14progress toward windows hello world workingAndrew Kelley
2017-05-19change slicing syntax from ... to ..Andrew Kelley
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-03change while syntaxAndrew Kelley
2017-05-03remove test and try expressions in favor of if expressionsAndrew 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-02fix else-if parsingJosh Wolfe
2017-04-02defer without a block body requires a following semicolonJosh Wolfe
2017-04-02add secret void expression after defer statement if it's the last statement i...Josh Wolfe
2017-04-02allow implicit semicolon after defer {}Josh Wolfe
2017-04-02variable declarations must be followed by semicolonJosh Wolfe
2017-04-02fix confusion in block expression parsingJosh Wolfe
2017-04-02Require top-level-declaration comptime use {}Josh Wolfe
2017-03-31clean up analysis of {blocks}Josh Wolfe
2017-03-26replace "&&" and "||" with "and" and "or"Andrew Kelley
2017-03-26new unreachable syntaxAndrew Kelley
2017-03-26add comptime top level declarationAndrew Kelley
2017-03-16introduce new test syntaxAndrew Kelley
2017-02-07inline assembly allows clobbers with no inputAndrew Kelley
2017-02-05try expression can omit variable assignmentsAndrew Kelley
2017-02-04inline assembly supports `%=` syntaxAndrew Kelley
2017-02-04remove volatileStore builtin; add volatile pointersAndrew 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-22use comptime instead of inline for var and paramsAndrew Kelley
2017-01-16get rid of zeroes literalAndrew Kelley