| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Build as C++ | Ginger Bill | 2017-06-08 | 1 | -282/+0 |
| | | |||||
| * | `bit_field`; Lexical sugar operators ≠ ≤ ≥ | Ginger Bill | 2017-06-03 | 1 | -11/+12 |
| | | | | | | | | | | | | | | | | | | Example below: // See: https://en.wikipedia.org/wiki/Bit_field BoxProps :: bit_field { opaque : 1, fill_colour : 3, _ : 4, show_border : 1, border_colour : 3, border_style : 2, _ : 2, width : 4, height : 4, _ : 8, } | ||||
| * | Experimental try for ABI for return values on windows | Ginger Bill | 2017-05-28 | 1 | -0/+1 |
| | | | | | It's all done by reverse engineering it. I may be wrong... | ||||
| * | `default:` to `case:`; `no_alias` to `#no_alias` | Ginger Bill | 2017-05-27 | 1 | -9/+16 |
| | | |||||
| * | Fix issue #63 for block comments not terminating at an EOF | Ginger Bill | 2017-05-09 | 1 | -3/+6 |
| | | |||||
| * | Fix subtype polymorphism implicit conversion | Ginger Bill | 2017-04-30 | 1 | -4/+4 |
| | | |||||
| * | `fmt.String_Buffer`, Fix issue #44, Tweak overloading rules | Ginger Bill | 2017-04-26 | 1 | -2/+13 |
| | | |||||
| * | Fix `find_using_index_expr` | Ginger Bill | 2017-04-23 | 1 | -4/+4 |
| | | |||||
| * | Fix error printing for basic directives | Ginger Bill | 2017-04-17 | 1 | -1/+3 |
| | | |||||
| * | Fix addressing mode rules for `match in` statements | Ginger Bill | 2017-04-13 | 1 | -0/+1 |
| | | |||||
| * | Add branch labels for loops; using list | Ginger Bill | 2017-03-19 | 1 | -1/+15 |
| | | |||||
| * | windows.odin TYPE_NAME to Type_Name; More SSA work and SSA printing for ↵ | Ginger Bill | 2017-03-12 | 1 | -0/+11 |
| | | | | | debugging | ||||
| * | Unexported struct fields | Ginger Bill | 2017-02-19 | 1 | -0/+1 |
| | | |||||
| * | Fix immutable rules; add some general documentation | Ginger Bill | 2017-02-14 | 1 | -3/+6 |
| | | | | | immutable is still a little weird and not completely what you'd expect. Maybe just not having it is better. | ||||
| * | v0.1.0v0.1.0 | Ginger Bill | 2017-02-11 | 1 | -1/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | -0/+9 |
| | | | | | fix extension checking | ||||
| * | Only check files that have been truly imported. | Ginger Bill | 2017-02-11 | 1 | -1/+1 |
| | | |||||
| * | Remove Maybe type; Enum `names` | Ginger Bill | 2017-02-10 | 1 | -0/+1 |
| | | |||||
| * | Update code from OSX merge to be consistent with the rest of the code | Ginger Bill | 2017-02-01 | 1 | -73/+2 |
| | | | | | 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/+2 |
| |\ | |||||
| | * | Change internals of `context`; Disable `immutable` | Ginger Bill | 2017-02-01 | 1 | -0/+2 |
| | | | |||||
| * | | oh boy, basic osx/unix support | zhiayang | 2017-02-02 | 1 | -2/+59 |
| |/ | |||||
| * | Library names - Only link with used foreign libraries | Ginger Bill | 2017-01-26 | 1 | -0/+15 |
| | | |||||
| * | Change casting syntax: `cast(T)x` `transmute(T)x` et al. | Ginger Bill | 2017-01-25 | 1 | -1/+3 |
| | | |||||
| * | `using` `immutable` `thread_local` on variable declarations | Ginger Bill | 2017-01-19 | 1 | -6/+7 |
| | | |||||
| * | `immutable` field prefix | Ginger Bill | 2017-01-19 | 1 | -2/+2 |
| | | |||||
| * | Comma for all field separators; Overloaded procedures follow exportation rules | Ginger Bill | 2017-01-17 | 1 | -2/+3 |
| | | |||||
| * | Best viable overloading procedure algorithm; `no_alias`; call expr style casts | Ginger Bill | 2017-01-17 | 1 | -0/+1 |
| | | |||||
| * | Procedure overloading | Ginger Bill | 2017-01-15 | 1 | -4/+11 |
| | | |||||
| * | "Old style" enums | Ginger Bill | 2017-01-08 | 1 | -3/+0 |
| | | | | | | name and value information `count`, `min_value`, `max_value` constants | ||||
| * | File reorganization for checker system. | Ginger Bill | 2017-01-07 | 1 | -0/+190 |