| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Allow pointers to `append`; Fix strconv stuff; `new_slice` allows for capacity | Ginger Bill | 2017-03-02 | 1 | -2/+2 |
| | | |||||
| * | Slices now have a capacity. | Ginger Bill | 2017-02-26 | 1 | -8/+10 |
| | | |||||
| * | Ellipsis is now just `..`; Remove half-closed range operator and treat all ↵ | Ginger Bill | 2017-02-26 | 1 | -4/+4 |
| | | | | | of them as half-closed; slice expression uses `..`; | ||||
| * | Fix fmt integer width printing | Ginger Bill | 2017-02-26 | 1 | -1/+1 |
| | | |||||
| * | ++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ↵ | Ginger Bill | 2017-02-26 | 1 | -5/+10 |
| | | | | | ~ on 64 bit constants; Fix integer casts from smaller to larger size | ||||
| * | Fix Tuple type info bug | Ginger Bill | 2017-02-24 | 1 | -0/+12 |
| | | | | | Caused by not having type safe tagged unions :P (Silly C) | ||||
| * | v0.1.1v0.1.1 | Ginger Bill | 2017-02-24 | 1 | -100/+12 |
| | | |||||
| * | A decent union type with common fields and variants | Ginger Bill | 2017-02-21 | 1 | -5/+95 |
| | | |||||
| * | Begin changing `union` syntax | Ginger Bill | 2017-02-19 | 1 | -1/+1 |
| | | |||||
| * | Unexported struct fields on selectors | Ginger Bill | 2017-02-19 | 1 | -0/+7 |
| | | |||||
| * | Unexported struct fields | Ginger Bill | 2017-02-19 | 1 | -7/+0 |
| | | |||||
| * | `delete` for maps | Ginger Bill | 2017-02-19 | 1 | -0/+7 |
| | | |||||
| * | Fix overloading bug due to `#import .`; Add sys/wgl.odin | Ginger Bill | 2017-02-19 | 1 | -1/+1 |
| | | |||||
| * | Fix overloading bug due to comparison of named types | Ginger Bill | 2017-02-18 | 1 | -1/+0 |
| | | |||||
| * | Change ternary expression precedence | Ginger Bill | 2017-02-18 | 1 | -3/+2 |
| | | |||||
| * | Ternary expression (removed if and block expression) | Ginger Bill | 2017-02-14 | 1 | -9/+6 |
| | | |||||
| * | Prevent `cast` on pointer to union types | Ginger Bill | 2017-02-14 | 1 | -0/+7 |
| | | |||||
| * | Optional ok for `union_cast` (similar to map indices) | Ginger Bill | 2017-02-14 | 1 | -1/+7 |
| | | |||||
| * | Fix immutable rules; add some general documentation | Ginger Bill | 2017-02-14 | 1 | -9/+3 |
| | | | | | 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 | -7/+3 |
| | | |||||
| * | Fix index assignment rules for indirection | Ginger Bill | 2017-02-14 | 1 | -4/+11 |
| | | |||||
| * | Fix issue #23 | Ginger Bill | 2017-02-12 | 1 | -0/+7 |
| | | |||||
| * | v0.1.0v0.1.0 | Ginger Bill | 2017-02-11 | 1 | -36/+69 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | -17/+26 |
| | | | | | fix extension checking | ||||
| * | Only check files that have been truly imported. | Ginger Bill | 2017-02-11 | 1 | -10/+1 |
| | | |||||
| * | Remove need for `type` keyword | Ginger Bill | 2017-02-10 | 1 | -1/+1 |
| | | |||||
| * | Remove Maybe type; Enum `names` | Ginger Bill | 2017-02-10 | 1 | -39/+38 |
| | | |||||
| * | Fix global maps and initialize the preload types before | Ginger Bill | 2017-02-07 | 1 | -3/+9 |
| | | |||||
| * | Map type info and fmt printing | Ginger Bill | 2017-02-07 | 1 | -4/+2 |
| | | |||||
| * | `map` literals | Ginger Bill | 2017-02-06 | 1 | -13/+33 |
| | | |||||
| * | Make checking map key exists optional | Ginger Bill | 2017-02-06 | 1 | -2/+2 |
| | | |||||
| * | `map` string keys and `for` iterator | Ginger Bill | 2017-02-06 | 1 | -5/+9 |
| | | |||||
| * | dynamic `map` insertion and lookup | Ginger Bill | 2017-02-06 | 1 | -3/+4 |
| | | |||||
| * | Nearly implement dynamics map, missing insertion | Ginger Bill | 2017-02-06 | 1 | -3/+4 |
| | | |||||
| * | Begin writing dynamic map procs and fix `using` bug in IR | Ginger Bill | 2017-02-05 | 1 | -3/+8 |
| | | |||||
| * | Add `types.odin`; Begin work on `map` | Ginger Bill | 2017-02-05 | 1 | -1/+5 |
| | | |||||
| * | Custom struct alignment | Ginger Bill | 2017-02-05 | 2 | -86/+101 |
| | | |||||
| * | Update code from OSX merge to be consistent with the rest of the code | Ginger Bill | 2017-02-01 | 1 | -0/+2 |
| | | | | | Remove some dead code whilst I was here too :P | ||||
| * | Merge branch 'master' of https://github.com/zhiayang/Odin | zhiayang | 2017-02-02 | 2 | -15/+28 |
| |\ | |||||
| | * | Change internals of `context`; Disable `immutable` | Ginger Bill | 2017-02-01 | 1 | -0/+10 |
| | | | |||||
| * | | oh boy, basic osx/unix support | zhiayang | 2017-02-02 | 1 | -3/+3 |
| |/ | |||||
| * | Change vector memory layout and operations; `for in` vector. | Ginger Bill | 2017-01-30 | 1 | -0/+16 |
| | | |||||
| * | Allow _ in floats | Ginger Bill | 2017-01-29 | 1 | -7/+7 |
| | | |||||
| * | sprint*, variadic append works correctly now. | Ginger Bill | 2017-01-29 | 1 | -280/+5 |
| | | |||||
| * | Variadic `append` | Ginger Bill | 2017-01-29 | 1 | -6/+1 |
| | | |||||
| * | Dynamic arrays | Ginger Bill | 2017-01-29 | 1 | -2/+13 |
| | | |||||
| * | Update README.mdv0.0.6b | Ginger Bill | 2017-01-29 | 2 | -3/+558 |
| | | |||||
| * | Fix untyped to `any` assignments. Fixed crash when arguments with no value ↵ | Ginger Bill | 2017-01-29 | 1 | -277/+3 |
| | | | | | are passed | ||||
| * | Overloaded `free`; 3 dotted ellipsisv0.0.6a | Ginger Bill | 2017-01-28 | 2 | -6/+9 |
| | | |||||
| * | Fix parsing for block/if expression within if/for/etc. statementsv0.0.6 | Ginger Bill | 2017-01-27 | 3 | -257/+268 |
| | | |||||