| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | v0.1.1v0.1.1 | Ginger Bill | 2017-02-24 | 4 | -33/+33 |
| | | |||||
| * | Fix minor bugs in IR for slices | Ginger Bill | 2017-02-23 | 3 | -10/+6 |
| | | |||||
| * | A decent union type with common fields and variants | Ginger Bill | 2017-02-21 | 7 | -303/+511 |
| | | |||||
| * | Begin changing `union` syntax | Ginger Bill | 2017-02-19 | 4 | -44/+148 |
| | | |||||
| * | Unexported struct fields on selectors | Ginger Bill | 2017-02-19 | 1 | -16/+32 |
| | | |||||
| * | Unexported struct fields | Ginger Bill | 2017-02-19 | 3 | -19/+48 |
| | | |||||
| * | `delete` for maps | Ginger Bill | 2017-02-19 | 3 | -15/+52 |
| | | |||||
| * | Fix overloading bug due to `#import .`; Add sys/wgl.odin | Ginger Bill | 2017-02-19 | 3 | -25/+35 |
| | | |||||
| * | Fix overloading bug due to comparison of named types | Ginger Bill | 2017-02-18 | 3 | -18/+26 |
| | | |||||
| * | Named return values but do not affect other declarations | Ginger Bill | 2017-02-18 | 3 | -122/+170 |
| | | |||||
| * | Change ternary expression precedence | Ginger Bill | 2017-02-18 | 4 | -184/+267 |
| | | |||||
| * | Ternary expression (removed if and block expression) | Ginger Bill | 2017-02-14 | 5 | -424/+181 |
| | | |||||
| * | 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 | 1 | -79/+83 |
| | | |||||
| * | Prevent `cast` on pointer to union types | Ginger Bill | 2017-02-14 | 3 | -6/+19 |
| | | |||||
| * | Optional ok for `union_cast` (similar to map indices) | Ginger Bill | 2017-02-14 | 5 | -74/+76 |
| | | |||||
| * | Fix immutable rules; add some general documentation | Ginger Bill | 2017-02-14 | 9 | -47/+77 |
| | | | | | 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 | 5 | -47/+45 |
| | | |||||
| * | Fix index assignment rules for indirection | Ginger Bill | 2017-02-14 | 2 | -42/+71 |
| | | |||||
| * | 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 | 1 | -5/+4 |
| | | |||||
| * | Record type field `names` | Ginger Bill | 2017-02-12 | 5 | -164/+191 |
| | | |||||
| * | v0.1.0v0.1.0 | Ginger Bill | 2017-02-11 | 6 | -126/+89 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | 9 | -56/+131 |
| | | | | | fix extension checking | ||||
| * | Only check files that have been truly imported. | Ginger Bill | 2017-02-11 | 7 | -180/+275 |
| | | |||||
| * | Remove need for `type` keyword | Ginger Bill | 2017-02-10 | 5 | -183/+158 |
| | | |||||
| * | Remove Maybe type; Enum `names` | Ginger Bill | 2017-02-10 | 8 | -354/+237 |
| | | |||||
| * | Fix global maps and initialize the preload types before | Ginger Bill | 2017-02-07 | 4 | -10/+18 |
| | | |||||
| * | Map type info and fmt printing | Ginger Bill | 2017-02-07 | 4 | -20/+42 |
| | | |||||
| * | `map` immutable fields: count, capacity, allocator | Ginger Bill | 2017-02-06 | 3 | -6/+136 |
| | | |||||
| * | `map` literals | Ginger Bill | 2017-02-06 | 3 | -35/+105 |
| | | |||||
| * | Make checking map key exists optional | Ginger Bill | 2017-02-06 | 3 | -10/+23 |
| | | |||||
| * | `map` string keys and `for` iterator | Ginger Bill | 2017-02-06 | 3 | -8/+69 |
| | | |||||
| * | dynamic `map` insertion and lookup | Ginger Bill | 2017-02-06 | 3 | -36/+42 |
| | | |||||
| * | Nearly implement dynamics map, missing insertion | Ginger Bill | 2017-02-06 | 4 | -47/+193 |
| | | |||||
| * | Begin writing dynamic map procs and fix `using` bug in IR | Ginger Bill | 2017-02-05 | 8 | -198/+390 |
| | | |||||
| * | Add `types.odin`; Begin work on `map` | Ginger Bill | 2017-02-05 | 6 | -38/+225 |
| | | |||||
| * | Custom struct alignment | Ginger Bill | 2017-02-05 | 6 | -264/+381 |
| | | |||||
| * | 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 | 12 | -195/+144 |
| | | | | | Remove some dead code whilst I was here too :P | ||||
| * | Merge branch 'master' of https://github.com/zhiayang/Odin | zhiayang | 2017-02-02 | 8 | -229/+207 |
| |\ | |||||
| | * | Change internals of `context`; Disable `immutable` | Ginger Bill | 2017-02-01 | 8 | -229/+207 |
| | | | |||||
| * | | oh boy, basic osx/unix support | zhiayang | 2017-02-02 | 13 | -72/+325 |
| |/ | |||||
| * | 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 | 6 | -294/+404 |
| | | |||||
| * | Allow _ in floats | Ginger Bill | 2017-01-29 | 2 | -17/+91 |
| | | |||||
| * | sprint*, variadic append works correctly now. | Ginger Bill | 2017-01-29 | 1 | -11/+7 |
| | | |||||
| * | Variadic `append` | Ginger Bill | 2017-01-29 | 3 | -32/+96 |
| | | |||||
| * | Dynamic arrays | Ginger Bill | 2017-01-29 | 8 | -73/+434 |
| | | |||||
| * | Fix untyped to `any` assignments. Fixed crash when arguments with no value ↵ | Ginger Bill | 2017-01-29 | 2 | -4/+8 |
| | | | | | are passed | ||||