aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
AgeCommit message (Expand)Author
2016-01-26different extern syntax and simplify parsing top level declsAndrew Kelley
2016-01-25implement compile time string concatenationAndrew Kelley
2016-01-25syntax: back to -> for return type, no more =>Andrew Kelley
2016-01-25implement %% prefix operatorAndrew Kelley
2016-01-25implement %% operatorAndrew Kelley
2016-01-24introduce the error keyword and typeAndrew Kelley
2016-01-22add undefined literalAndrew Kelley
2016-01-22implicit casts rewrite the ASTAndrew Kelley
2016-01-21number literal reworkAndrew Kelley
2016-01-20parsing error value decls and error value literalsAndrew Kelley
2016-01-20basic support for switch expressionAndrew Kelley
2016-01-19add switch statement support to parserAndrew Kelley
2016-01-18add for loop which can iterate over arraysAndrew Kelley
2016-01-15parser: fix not setting container init kindAndrew Kelley
2016-01-15rename "use" to "import"Andrew Kelley
2016-01-15reduce precedence of {} suffix operatorAndrew Kelley
2016-01-14fix next_node_index on wrong structAndrew Kelley
2016-01-14parser: type expressions cannot be assignmentAndrew Kelley
2016-01-14instead of 'as' to cast, call type as functionAndrew Kelley
2016-01-13fix noalias codegenAndrew Kelley
2016-01-13all types are now expressionsAndrew Kelley
2016-01-10delete unused enumfield and enumdecl node typesAndrew Kelley
2016-01-10update enum parsing to new planAndrew Kelley
2016-01-10refactor out the horrible beast that was codegen_nodeAndrew Kelley
2016-01-10parsing enum declarationsAndrew Kelley
2016-01-09order-independent declarationsAndrew Kelley
2016-01-09implement pub constAndrew Kelley
2016-01-08rename `restrict` to `noalias`Andrew Kelley
2016-01-08suport checked arithmetic operations via intrinsicsAndrew Kelley
2016-01-08add restrict qualifier on pointer argumentsAndrew Kelley
2016-01-07implement array slicing syntaxAndrew Kelley
2016-01-07add ?? maybe unwrapping binary operatorAndrew Kelley
2016-01-06support pub structs. move rand to std lib.Andrew Kelley
2016-01-06support unknown size arraysAndrew Kelley
2016-01-05array syntax is [10]i32 instead of [i32; 10]Andrew Kelley
2016-01-04progress toward compile time constant expression evaluationAndrew Kelley
2016-01-04add pointer dereferencing operatorAndrew Kelley
2016-01-04add member functionsAndrew Kelley
2016-01-03implement #sizeof()Andrew Kelley
2016-01-03add #typeof() compiler functionAndrew Kelley
2016-01-02fix various bugs related to guess number exampleAndrew Kelley
2016-01-02closer to guess number example workingAndrew Kelley
2015-12-31block expressions require parensAndrew Kelley
2015-12-26parse if maybe expressionAndrew Kelley
2015-12-24implement continue expressionAndrew Kelley
2015-12-24add break expressionAndrew Kelley
2015-12-24add while loopAndrew Kelley
2015-12-24add struct value expressionAndrew Kelley
2015-12-23inline assembly uses -> instead of returnAndrew Kelley
2015-12-15use realpath to avoid duplicate importsAndrew Kelley