| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Parse directories to be packages | gingerBill | 2018-05-21 | 1 | -67/+0 |
| | | |||||
| * | Move os_*.odin files to os/ | gingerBill | 2018-03-04 | 1 | -4/+4 |
| | | |||||
| * | Improve min-dep for Type Info | gingerBill | 2018-01-28 | 1 | -0/+5 |
| | | |||||
| * | Named return value act as variables; Code reorganization | gingerBill | 2018-01-17 | 1 | -1/+1 |
| | | |||||
| * | Disable struct field reordering (for the time being) | gingerBill | 2017-12-12 | 1 | -1/+1 |
| | | |||||
| * | Fix `write_entire_file` | gingerBill | 2017-12-06 | 1 | -1/+1 |
| | | |||||
| * | Make core library use procedure groupings rather than normal overloading | gingerBill | 2017-12-04 | 1 | -2/+2 |
| | | |||||
| * | New slice memory layout (ptr+len); `byte` | gingerBill | 2017-11-26 | 1 | -6/+6 |
| | | |||||
| * | essence cross compile | Nakst | 2017-11-26 | 1 | -0/+1 |
| | | |||||
| * | Add optional truncate parameter to write_entire_file (#144) | gingerBill | 2017-11-13 | 1 | -2/+6 |
| | | |||||
| * | #alias type declarations; core library additions; `_global` import name for ↵ | gingerBill | 2017-10-29 | 1 | -2/+12 |
| | | | | | the global scope | ||||
| * | Remove `when` suffixes; Implement file scope `when` statement, evaluated in ↵ | Ginger Bill | 2017-09-10 | 1 | -3/+3 |
| | | | | | source order | ||||
| * | Library collections | Ginger Bill | 2017-09-07 | 1 | -3/+3 |
| | | |||||
| * | `export` declarations | Ginger Bill | 2017-08-27 | 1 | -3/+3 |
| | | |||||
| * | Replace `import_load` with `using import .` | Ginger Bill | 2017-08-27 | 1 | -5/+3 |
| | | |||||
| * | Fix struct #packed alignment calculation | Ginger Bill | 2017-08-12 | 1 | -1/+1 |
| | | |||||
| * | Fix struct parameter bugs | Ginger Bill | 2017-07-21 | 1 | -1/+1 |
| | | |||||
| * | Fix `copy` | Ginger Bill | 2017-07-18 | 1 | -2/+2 |
| | | |||||
| * | General specialization for polymorphic parameters | Ginger Bill | 2017-07-18 | 1 | -1/+1 |
| | | |||||
| * | Change precedence order for types e.g. ^T(x) == ^(T(x)) | Ginger Bill | 2017-07-13 | 1 | -1/+1 |
| | | |||||
| * | `..` half closed range; `...` open range; `...` variadic syntax | Ginger Bill | 2017-07-07 | 1 | -1/+1 |
| | | |||||
| * | :: style procedure declarations; remove old parsing code | Ginger Bill | 2017-06-28 | 1 | -3/+3 |
| | | |||||
| * | Disable `var` and `const` declarations | Ginger Bill | 2017-06-28 | 1 | -6/+6 |
| | | |||||
| * | Declaration grouping uses () rather than {}; Fix some problem with ↵ | Ginger Bill | 2017-06-17 | 1 | -2/+2 |
| | | | | | compilation on *nix | ||||
| * | Declaration grouping uses braces rather than parentheses | Ginger Bill | 2017-06-13 | 1 | -2/+2 |
| | | |||||
| * | Pascal style declaration grouping with () | Ginger Bill | 2017-06-12 | 1 | -3/+5 |
| | | |||||
| * | `import` and `import_load` as keywords; Fix procedure literal call trick | Ginger Bill | 2017-06-12 | 1 | -3/+3 |
| | | |||||
| * | Prefix `proc` syntax | Ginger Bill | 2017-06-12 | 1 | -3/+3 |
| | | |||||
| * | Remove := with var and :: with const | Ginger Bill | 2017-06-12 | 1 | -9/+9 |
| | | |||||
| * | Make `rune` a basic type and not an alias; Remove `byte` | Ginger Bill | 2017-06-06 | 1 | -4/+4 |
| | | |||||
| * | `default:` to `case:`; `no_alias` to `#no_alias` | Ginger Bill | 2017-05-27 | 1 | -0/+10 |
| | | |||||
| * | Fix Ternary Operator IR bug | Ginger Bill | 2017-05-13 | 1 | -3/+3 |
| | | |||||
| * | Add hidden __tag for union variables. | Ginger Bill | 2017-05-04 | 1 | -2/+36 |
| | | |||||
| * | Fixed Windows (updated gb.h) | Need to test on MacOS and Linux now! | Zachary Pierson | 2017-02-11 | 1 | -3/+3 |
| | | |||||
| * | Merging from gingerBill's master | Zachary Pierson | 2017-02-11 | 1 | -2/+1 |
| |\ | |||||
| | * | v0.1.0v0.1.0 | Ginger Bill | 2017-02-11 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added: * Dynamic Arrays `[...]Type` * Dynamic Maps `map[Key]Value` * Dynamic array and map literals * Custom struct alignemnt `struct #align 8 { bar: i8 }` * Allow `_` in numbers * Variadic `append` * fmt.sprint* * Entities prefixes with an underscore do not get exported on imports * Overloaded `free` for pointers, slices, strings, dynamic arrays, and dynamic maps * enum types have an implict `names` field, a []string of all the names in that enum Removed: * Maybe/option types * immutable variables * Remove `type` keyword and other "reserved" keywords * `compile_assert` and `assert`return the value of the condition for semantic reasons Changed: * thread_local -> #thread_local * #include -> #load * Files only get checked if they are actually used * match x in y {} // For type match statements * Version numbering now starts from 0.1.0 and uses the convention: - major.minor.patch Fixes: * Many fmt.* fixes To come very Soon™: * Linux and OS X builds (unofficial ones do exist already) | ||||
| * | | Added a very basic Linux standard library shamelessly stolen from the MacOS one. | Zachary Pierson | 2017-02-07 | 1 | -0/+1 |
| |/ | | | | Made Linux (almost) work. The generated binaries segfault, but it's so close I can almost taste it. | ||||
| * | oh boy, basic osx/unix support | zhiayang | 2017-02-02 | 1 | -0/+1 |
| | | |||||
| * | Fix untyped to `any` assignments. Fixed crash when arguments with no value ↵ | Ginger Bill | 2017-01-29 | 1 | -1/+1 |
| | | | | | are passed | ||||
| * | Fix parameter/field lists and #import #include syntax | Ginger Bill | 2017-01-02 | 1 | -1/+1 |
| | | |||||
| * | Generic (grouped) declarations: var, let, const, type, import, include | Ginger Bill | 2016-12-20 | 1 | -1/+1 |
| | | |||||
| * | Go/BCPL style semicolon insertion during tokenizing stage | Ginger Bill | 2016-12-05 | 1 | -1/+1 |
| | | |||||
| * | Semicolons are required; `when` condition for certain file scope ↵ | Ginger Bill | 2016-12-01 | 1 | -3/+2 |
| | | | | | declarations; #import syntax change | ||||
| * | Delay importing entities till all other entities are collected | Ginger Bill | 2016-11-30 | 1 | -173/+1 |
| | | |||||
| * | error_node | Ginger Bill | 2016-11-30 | 1 | -17/+18 |
| | | |||||
| * | `when` statement; Better entity collection system (for both local and ↵ | Ginger Bill | 2016-11-29 | 1 | -1/+3 |
| | | | | | global); Better parsing for record declarations | ||||
| * | v0.0.3 Build | Ginger Bill | 2016-11-17 | 1 | -9/+53 |
| | | |||||
| * | #foreign_library; vector fields (x, y, z, w) for count <= 4 | Ginger Bill | 2016-11-15 | 1 | -6/+6 |
| | | |||||
| * | Minor Style Fixes | Ginger Bill | 2016-10-22 | 1 | -0/+1 |
| | | |||||
| * | Untyped `nil` | Ginger Bill | 2016-10-06 | 1 | -5/+5 |
| | | |||||