| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | v0.1.1v0.1.1 | Ginger Bill | 2017-02-24 | 5 | -133/+45 |
| | | |||||
| * | Fix minor bugs in IR for slices | Ginger Bill | 2017-02-23 | 5 | -21/+25 |
| | | |||||
| * | A decent union type with common fields and variants | Ginger Bill | 2017-02-21 | 10 | -386/+675 |
| | | |||||
| * | Begin changing `union` syntax | Ginger Bill | 2017-02-19 | 6 | -45/+192 |
| | | |||||
| * | Unexported struct fields on selectors | Ginger Bill | 2017-02-19 | 3 | -18/+39 |
| | | |||||
| * | Unexported struct fields | Ginger Bill | 2017-02-19 | 5 | -26/+50 |
| | | |||||
| * | `delete` for maps | Ginger Bill | 2017-02-19 | 5 | -16/+60 |
| | | |||||
| * | Fix overloading bug due to `#import .`; Add sys/wgl.odin | Ginger Bill | 2017-02-19 | 7 | -43/+114 |
| | | |||||
| * | Fix overloading bug due to comparison of named types | Ginger Bill | 2017-02-18 | 5 | -21/+29 |
| | | |||||
| * | Named return values but do not affect other declarations | Ginger Bill | 2017-02-18 | 4 | -124/+177 |
| | | |||||
| * | Change ternary expression precedence | Ginger Bill | 2017-02-18 | 6 | -197/+271 |
| | | |||||
| * | Ternary expression (removed if and block expression) | Ginger Bill | 2017-02-14 | 7 | -435/+197 |
| | | |||||
| * | Ignore previous silly commit :P I shouldn't have move it | Ginger Bill | 2017-02-14 | 1 | -10/+7 |
| | | |||||
| * | Move error handling for casting | Ginger Bill | 2017-02-14 | 2 | -81/+84 |
| | | |||||
| * | Prevent `cast` on pointer to union types | Ginger Bill | 2017-02-14 | 7 | -9/+29 |
| | | |||||
| * | Optional ok for `union_cast` (similar to map indices) | Ginger Bill | 2017-02-14 | 8 | -89/+100 |
| | | |||||
| * | Fix immutable rules; add some general documentation | Ginger Bill | 2017-02-14 | 14 | -166/+193 |
| | | | | | immutable is still a little weird and not completely what you'd expect. Maybe just not having it is better. | ||||
| * | Reimplement `immutable` with different rules. | Ginger Bill | 2017-02-14 | 6 | -54/+48 |
| | | |||||
| * | Fix index assignment rules for indirection | Ginger Bill | 2017-02-14 | 3 | -46/+82 |
| | | |||||
| * | Use a global to store the build context information | Ginger Bill | 2017-02-12 | 9 | -220/+195 |
| | | |||||
| * | Fix issue #23 | Ginger Bill | 2017-02-12 | 2 | -5/+11 |
| | | |||||
| * | Record type field `names` | Ginger Bill | 2017-02-12 | 8 | -203/+228 |
| | | |||||
| * | v0.1.0v0.1.0 | Ginger Bill | 2017-02-11 | 12 | -170/+164 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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) | ||||
| * | Dynamic array syntax [...]Type; make entities private with a prefix of `_`; ↵ | Ginger Bill | 2017-02-11 | 14 | -88/+172 |
| | | | | | fix extension checking | ||||
| * | Only check files that have been truly imported. | Ginger Bill | 2017-02-11 | 10 | -198/+283 |
| | | |||||
| * | Remove need for `type` keyword | Ginger Bill | 2017-02-10 | 11 | -220/+195 |
| | | |||||
| * | Remove Maybe type; Enum `names` | Ginger Bill | 2017-02-10 | 15 | -474/+345 |
| | | |||||
| * | Fix global maps and initialize the preload types before | Ginger Bill | 2017-02-07 | 5 | -13/+27 |
| | | |||||
| * | Map type info and fmt printing | Ginger Bill | 2017-02-07 | 7 | -52/+139 |
| | | |||||
| * | `map` immutable fields: count, capacity, allocator | Ginger Bill | 2017-02-06 | 4 | -10/+143 |
| | | |||||
| * | `map` literals | Ginger Bill | 2017-02-06 | 4 | -48/+138 |
| | | |||||
| * | Make checking map key exists optional | Ginger Bill | 2017-02-06 | 4 | -12/+25 |
| | | |||||
| * | `map` string keys and `for` iterator | Ginger Bill | 2017-02-06 | 5 | -14/+82 |
| | | |||||
| * | dynamic `map` insertion and lookup | Ginger Bill | 2017-02-06 | 5 | -45/+55 |
| | | |||||
| * | Nearly implement dynamics map, missing insertion | Ginger Bill | 2017-02-06 | 6 | -86/+327 |
| | | |||||
| * | Begin writing dynamic map procs and fix `using` bug in IR | Ginger Bill | 2017-02-05 | 11 | -307/+617 |
| | | |||||
| * | Add `types.odin`; Begin work on `map` | Ginger Bill | 2017-02-05 | 10 | -40/+442 |
| | | |||||
| * | Custom struct alignment | Ginger Bill | 2017-02-05 | 9 | -350/+485 |
| | | |||||
| * | Add build guards around compiling part of the code. | Ginger Bill | 2017-02-01 | 1 | -1/+4 |
| | | |||||
| * | Update code from OSX merge to be consistent with the rest of the code | Ginger Bill | 2017-02-01 | 15 | -249/+162 |
| | | | | | Remove some dead code whilst I was here too :P | ||||
| * | Merge pull request #16 from zhiayang/master | gingerBill | 2017-02-01 | 17 | -90/+577 |
| |\ | | | | | Basic, but sketchy, but somewhat usable, non-windows support | ||||
| | * | Merge branch 'master' of https://github.com/zhiayang/Odin | zhiayang | 2017-02-02 | 12 | -246/+257 |
| | |\ | |/ |/| | |||||
| * | | Change internals of `context`; Disable `immutable` | Ginger Bill | 2017-02-01 | 11 | -231/+239 |
| | | | |||||
| | * | oh boy, basic osx/unix support | zhiayang | 2017-02-02 | 16 | -75/+559 |
| |/ | |||||
| * | Remove dead code | Ginger Bill | 2017-01-30 | 1 | -95/+0 |
| | | |||||
| * | Change vector memory layout and operations; `for in` vector. | Ginger Bill | 2017-01-30 | 9 | -308/+445 |
| | | |||||
| * | Allow _ in floats | Ginger Bill | 2017-01-29 | 4 | -26/+100 |
| | | |||||
| * | sprint*, variadic append works correctly now. | Ginger Bill | 2017-01-29 | 3 | -291/+31 |
| | | |||||
| * | Variadic `append` | Ginger Bill | 2017-01-29 | 5 | -44/+105 |
| | | |||||
| * | Dynamic arrays | Ginger Bill | 2017-01-29 | 13 | -120/+539 |
| | | |||||