| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | v0.1.1v0.1.1 | Ginger Bill | 2017-02-24 | 1 | -4/+4 |
| | | |||||
| * | A decent union type with common fields and variants | Ginger Bill | 2017-02-21 | 1 | -145/+153 |
| | | |||||
| * | Begin changing `union` syntax | Ginger Bill | 2017-02-19 | 1 | -13/+67 |
| | | |||||
| * | Unexported struct fields on selectors | Ginger Bill | 2017-02-19 | 1 | -16/+32 |
| | | |||||
| * | Unexported struct fields | Ginger Bill | 2017-02-19 | 1 | -19/+45 |
| | | |||||
| * | `delete` for maps | Ginger Bill | 2017-02-19 | 1 | -2/+32 |
| | | |||||
| * | Fix overloading bug due to `#import .`; Add sys/wgl.odin | Ginger Bill | 2017-02-19 | 1 | -18/+21 |
| | | |||||
| * | Fix overloading bug due to comparison of named types | Ginger Bill | 2017-02-18 | 1 | -4/+1 |
| | | |||||
| * | Named return values but do not affect other declarations | Ginger Bill | 2017-02-18 | 1 | -27/+92 |
| | | |||||
| * | Ternary expression (removed if and block expression) | Ginger Bill | 2017-02-14 | 1 | -205/+25 |
| | | |||||
| * | 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 | 1 | -3/+14 |
| | | |||||
| * | Optional ok for `union_cast` (similar to map indices) | Ginger Bill | 2017-02-14 | 1 | -21/+12 |
| | | |||||
| * | Fix immutable rules; add some general documentation | Ginger Bill | 2017-02-14 | 1 | -3/+8 |
| | | | | | 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 | 1 | -22/+21 |
| | | |||||
| * | Fix index assignment rules for indirection | Ginger Bill | 2017-02-14 | 1 | -9/+19 |
| | | |||||
| * | Use a global to store the build context information | Ginger Bill | 2017-02-12 | 1 | -24/+22 |
| | | |||||
| * | Record type field `names` | Ginger Bill | 2017-02-12 | 1 | -19/+12 |
| | | |||||
| * | v0.1.0v0.1.0 | Ginger Bill | 2017-02-11 | 1 | -20/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | 1 | -13/+44 |
| | | | | | fix extension checking | ||||
| * | Only check files that have been truly imported. | Ginger Bill | 2017-02-11 | 1 | -23/+52 |
| | | |||||
| * | Remove need for `type` keyword | Ginger Bill | 2017-02-10 | 1 | -4/+5 |
| | | |||||
| * | Remove Maybe type; Enum `names` | Ginger Bill | 2017-02-10 | 1 | -119/+53 |
| | | |||||
| * | Fix global maps and initialize the preload types before | Ginger Bill | 2017-02-07 | 1 | -0/+6 |
| | | |||||
| * | Map type info and fmt printing | Ginger Bill | 2017-02-07 | 1 | -9/+7 |
| | | |||||
| * | `map` literals | Ginger Bill | 2017-02-06 | 1 | -3/+28 |
| | | |||||
| * | Make checking map key exists optional | Ginger Bill | 2017-02-06 | 1 | -4/+20 |
| | | |||||
| * | `map` string keys and `for` iterator | Ginger Bill | 2017-02-06 | 1 | -4/+4 |
| | | |||||
| * | dynamic `map` insertion and lookup | Ginger Bill | 2017-02-06 | 1 | -7/+1 |
| | | |||||
| * | Nearly implement dynamics map, missing insertion | Ginger Bill | 2017-02-06 | 1 | -7/+10 |
| | | |||||
| * | Begin writing dynamic map procs and fix `using` bug in IR | Ginger Bill | 2017-02-05 | 1 | -14/+127 |
| | | |||||
| * | Add `types.odin`; Begin work on `map` | Ginger Bill | 2017-02-05 | 1 | -11/+82 |
| | | |||||
| * | Custom struct alignment | Ginger Bill | 2017-02-05 | 1 | -0/+39 |
| | | |||||
| * | Update code from OSX merge to be consistent with the rest of the code | Ginger Bill | 2017-02-01 | 1 | -12/+5 |
| | | | | | Remove some dead code whilst I was here too :P | ||||
| * | Merge branch 'master' of https://github.com/zhiayang/Odin | zhiayang | 2017-02-02 | 1 | -0/+18 |
| |\ | |||||
| | * | Change internals of `context`; Disable `immutable` | Ginger Bill | 2017-02-01 | 1 | -0/+18 |
| | | | |||||
| * | | oh boy, basic osx/unix support | zhiayang | 2017-02-02 | 1 | -1/+5 |
| |/ | |||||
| * | Variadic `append` | Ginger Bill | 2017-01-29 | 1 | -19/+20 |
| | | |||||
| * | Dynamic arrays | Ginger Bill | 2017-01-29 | 1 | -6/+103 |
| | | |||||
| * | Fix untyped to `any` assignments. Fixed crash when arguments with no value ↵ | Ginger Bill | 2017-01-29 | 1 | -3/+7 |
| | | | | | are passed | ||||
| * | Overloaded `free`; 3 dotted ellipsisv0.0.6a | Ginger Bill | 2017-01-28 | 1 | -6/+28 |
| | | |||||
| * | Fix parsing for block/if expression within if/for/etc. statementsv0.0.6 | Ginger Bill | 2017-01-27 | 1 | -0/+5 |
| | | |||||
| * | `in` keyword for `for` and `match type` | Ginger Bill | 2017-01-27 | 1 | -3/+5 |
| | | |||||
| * | Fix utf8 stuff, Allow _ in numbers, Begin writing next demo code. | Ginger Bill | 2017-01-27 | 1 | -2/+18 |
| | | |||||
| * | Library names - Only link with used foreign libraries | Ginger Bill | 2017-01-26 | 1 | -0/+3 |
| | | |||||
| * | Fix pointer differences (issue #11); remove #dll_import | Ginger Bill | 2017-01-26 | 1 | -0/+13 |
| | | |||||
| * | Change casting syntax: `cast(T)x` `transmute(T)x` et al. | Ginger Bill | 2017-01-25 | 1 | -187/+203 |
| | | |||||
| * | Fix issue #10 | Ginger Bill | 2017-01-20 | 1 | -0/+1 |
| | | |||||
| * | `using` `immutable` `thread_local` on variable declarations | Ginger Bill | 2017-01-19 | 1 | -7/+8 |
| | | |||||