aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2016-01-20rename value_count to member_countMovingtoMars
2016-01-19add switch statement support to parserAndrew Kelley
2016-01-18Revert "delete parseh"Andrew Kelley
2016-01-18use signed integer for sizes of thingsAndrew Kelley
2016-01-18add error for shadowing a typeAndrew Kelley
2016-01-18add function pointer supportAndrew Kelley
2016-01-18pave the road for function pointersAndrew Kelley
2016-01-18refactor std to use for loopAndrew Kelley
2016-01-18add for loop which can iterate over arraysAndrew Kelley
2016-01-18fix nested arraysAndrew Kelley
2016-01-16better main symbol prototypeAndrew Kelley
2016-01-15rename "alwaysinline" to "inline"Andrew Kelley
2016-01-15support array literalsAndrew Kelley
2016-01-15fix error message for struct initialization on arrayAndrew Kelley
2016-01-15parser: fix not setting container init kindAndrew Kelley
2016-01-15rename "use" to "import"Andrew Kelley
2016-01-15add void arrays testAndrew Kelley
2016-01-15reduce precedence of {} suffix operatorAndrew Kelley
2016-01-15solve the mystery of undefined reference errorAndrew Kelley
2016-01-15fix build with gccAndrew Kelley
2016-01-15delete parsehAndrew Kelley
2016-01-15merge constant expression evaluator with analyzerAndrew Kelley
2016-01-14overflow intrinsics take type as first argumentAndrew 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-13Merge branch 'master' of github.com:andrewrk/zigAndrew Kelley
2016-01-13all types are now expressionsAndrew Kelley
2016-01-12fix build with gccAndrew Kelley
2016-01-11fix not adding builtin functions codeAndrew Kelley
2016-01-11support enums with values attachedAndrew Kelley
2016-01-11simple enum supportAndrew Kelley
2016-01-11resolve enum types and emit debug infoAndrew Kelley
2016-01-10fix codegen for void struct fieldsAndrew 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-10order-independent declarations even from importsAndrew Kelley
2016-01-10detect and report top level decl dependency loopAndrew Kelley
2016-01-09order-independent declarationsAndrew Kelley
2016-01-09add memcpy and memset intrinsicsAndrew 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-08implement unknown size array indexing and slicingAndrew Kelley
2016-01-08codegen: fix else if expression and maybe unwrap exprAndrew Kelley
2016-01-08fix codegen for implicit maybe wrapAndrew Kelley