aboutsummaryrefslogtreecommitdiff
path: root/src/tokenizer.cpp
AgeCommit message (Collapse)Author
2015-12-12codegen and tests for modify operators. closes #16Josh Wolfe
2015-12-12tokenizing assignment operatorsJosh Wolfe
2015-12-12fix a + b + c and similarJosh Wolfe
fix || and && closes #17
2015-12-12prepare codebase for struct and string supportAndrew Kelley
parsing code for structs, strings, and c string literals partial semantic analyzing code for structs, strings, and c string literals
2015-12-10add inline assembly supportAndrew Kelley
2015-12-09fix typoJosh Wolfe
2015-12-09ability to call external variadic functionsAndrew Kelley
2015-12-07getting started on array typesJosh Wolfe
2015-12-03add bool literalsJosh Wolfe
2015-12-03add labels and gotoAndrew Kelley
2015-12-02parsing variable declarationJosh Wolfe
2015-12-01support if conditionalsAndrew Kelley
2015-12-01implicit void statements and all tests pass with type checkingJosh Wolfe
2015-12-01colored error messages that tell the source fileAndrew Kelley
2015-11-30refactor code to prepare for multiple filesAndrew Kelley
verbose compiler output is now behind --verbose flag
2015-11-30add directive to specify root export versionAndrew Kelley
2015-11-29add unary expressionAndrew Kelley
2015-11-29parse and codegen for math expressionsAndrew Kelley
2015-11-27add pub and export visibility modifiers and optimizationAndrew Kelley
2015-11-27support C-style comments, plus nestingAndrew Kelley
2015-11-24support linker directivesAndrew Kelley
now you can depend on libc in zig language instead of it being hardcoded in the compiler.
2015-11-24only \n and ' ' are valid whitespace charactersAndrew Kelley
2015-11-24debug information for functionsAndrew Kelley
2015-11-24add unreachable expressionAndrew Kelley
now creating .o file from hello.zig correctly
2015-11-24write object file and fix void return typeAndrew Kelley
2015-11-24hello world IR code looks goodAndrew Kelley
2015-11-04progress toward more complex parser genAndrew Kelley
2015-11-03parser generator beginningsAndrew Kelley