| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Build as C++ | Ginger Bill | 2017-06-08 | 1 | -4255/+0 |
| | | |||||
| * | v0.3 Releasev0.3.0 | Ginger Bill | 2017-06-08 | 1 | -1/+0 |
| | | |||||
| * | `bit_field`; Lexical sugar operators ≠ ≤ ≥ | Ginger Bill | 2017-06-03 | 1 | -0/+63 |
| | | | | | | | | | | | | | | | | | | 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, } | ||||
| * | Change label syntax for `for` and `match` from #label name to name: | Ginger Bill | 2017-05-28 | 1 | -96/+54 |
| | | |||||
| * | `default:` to `case:`; `no_alias` to `#no_alias` | Ginger Bill | 2017-05-27 | 1 | -55/+51 |
| | | |||||
| * | Optional main for DLL; access struct elements by "index" | Ginger Bill | 2017-05-17 | 1 | -7/+266 |
| | | |||||
| * | Reimplement #ordered again | Ginger Bill | 2017-05-12 | 1 | -5/+5 |
| | | |||||
| * | Add %% operator (divisor modulo) | Ginger Bill | 2017-05-09 | 1 | -0/+2 |
| | | |||||
| * | Add XOR for booleans | Ginger Bill | 2017-05-07 | 1 | -4/+56 |
| | | |||||
| * | Add hidden __tag for union variables. | Ginger Bill | 2017-05-04 | 1 | -1/+1 |
| | | |||||
| * | Fix alignment and size bug of enums; Remove #ordered and make the default ↵ | Ginger Bill | 2017-05-02 | 1 | -5/+5 |
| | | | | | #ordered. | ||||
| * | Fix statement parsing of unary: & and ^ | Ginger Bill | 2017-04-30 | 1 | -23/+2 |
| | | |||||
| * | Syntax change: cast(T)x => T(x); union_cast(T)x => x.(T); transmute(T)x => ↵ | Ginger Bill | 2017-04-30 | 1 | -45/+52 |
| | | | | | | | transmute(T, x); `y:=^x` => `y:=&x;` Sorry for all the code breaking in this commit :( | ||||
| * | Fix issue #51; begin work on `atomic` types | Ginger Bill | 2017-04-28 | 1 | -0/+21 |
| | | |||||
| * | Fix issue #48 dependency issue | Ginger Bill | 2017-04-26 | 1 | -0/+4 |
| | | |||||
| * | `fmt.String_Buffer`, Fix issue #44, Tweak overloading rules | Ginger Bill | 2017-04-26 | 1 | -4/+8 |
| | | |||||
| * | Fix checking if a procedure terminates for `for` loops. | Ginger Bill | 2017-04-25 | 1 | -0/+3 |
| | | |||||
| * | Swap memory layout of `any` | Ginger Bill | 2017-04-23 | 1 | -0/+4 |
| | | |||||
| * | Internal change: IntervalExpr is now a BinaryExpr | Ginger Bill | 2017-04-22 | 1 | -49/+47 |
| | | |||||
| * | Interval expressions for match statements | Ginger Bill | 2017-04-21 | 1 | -1/+19 |
| | | |||||
| * | Change interval syntax: .. open range, ..< half-closed range | Ginger Bill | 2017-04-20 | 1 | -5/+15 |
| | | |||||
| * | Add `#require_results` for procedures | Ginger Bill | 2017-04-16 | 1 | -0/+3 |
| | | |||||
| * | Add parse_int; Fix union bugs with size, alignment, and recursive definition ↵ | Ginger Bill | 2017-04-14 | 1 | -0/+4 |
| | | | | | checking | ||||
| * | Fix fmt for type; remove dead stuff | Ginger Bill | 2017-04-13 | 1 | -16/+1 |
| | | |||||
| * | Fix issue #31; Removed `down_cast` | Ginger Bill | 2017-04-04 | 1 | -1/+0 |
| | | |||||
| * | Update and regression test old demos | Ginger Bill | 2017-04-02 | 1 | -1/+2 |
| | | |||||
| * | Complex numbers: complex64 complex128 | Ginger Bill | 2017-04-01 | 1 | -0/+2 |
| | | |||||
| * | v0.1.3v0.1.3 | Ginger Bill | 2017-03-27 | 1 | -1/+1 |
| | | |||||
| * | Multiple type cases for `match in` | Ginger Bill | 2017-03-19 | 1 | -5/+13 |
| | | |||||
| * | Add named branches for match statements | Ginger Bill | 2017-03-19 | 1 | -64/+27 |
| | | |||||
| * | Add branch labels for loops; using list | Ginger Bill | 2017-03-19 | 1 | -55/+95 |
| | | |||||
| * | Update gb.h | Ginger Bill | 2017-03-17 | 1 | -2/+3 |
| | | |||||
| * | windows.odin TYPE_NAME to Type_Name; More SSA work and SSA printing for ↵ | Ginger Bill | 2017-03-12 | 1 | -0/+14 |
| | | | | | debugging | ||||
| * | Slices now have a capacity. | Ginger Bill | 2017-02-26 | 1 | -13/+31 |
| | | |||||
| * | Ellipsis is now just `..`; Remove half-closed range operator and treat all ↵ | Ginger Bill | 2017-02-26 | 1 | -7/+2 |
| | | | | | of them as half-closed; slice expression uses `..`; | ||||
| * | ++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ↵ | Ginger Bill | 2017-02-26 | 1 | -0/+22 |
| | | | | | ~ on 64 bit constants; Fix integer casts from smaller to larger size | ||||
| * | Fix minor bugs in IR for slices | Ginger Bill | 2017-02-23 | 1 | -1/+1 |
| | | |||||
| * | A decent union type with common fields and variants | Ginger Bill | 2017-02-21 | 1 | -12/+39 |
| | | |||||
| * | Begin changing `union` syntax | Ginger Bill | 2017-02-19 | 1 | -9/+33 |
| | | |||||
| * | Named return values but do not affect other declarations | Ginger Bill | 2017-02-18 | 1 | -92/+73 |
| | | |||||
| * | Change ternary expression precedence | Ginger Bill | 2017-02-18 | 1 | -45/+35 |
| | | |||||
| * | Ternary expression (removed if and block expression) | Ginger Bill | 2017-02-14 | 1 | -149/+127 |
| | | |||||
| * | Prevent `cast` on pointer to union types | Ginger Bill | 2017-02-14 | 1 | -3/+3 |
| | | |||||
| * | Fix immutable rules; add some general documentation | Ginger Bill | 2017-02-14 | 1 | -1/+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 | -3/+3 |
| | | |||||
| * | Use a global to store the build context information | Ginger Bill | 2017-02-12 | 1 | -9/+5 |
| | | |||||
| * | v0.1.0v0.1.0 | Ginger Bill | 2017-02-11 | 1 | -23/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | -4/+9 |
| | | | | | fix extension checking | ||||
| * | Only check files that have been truly imported. | Ginger Bill | 2017-02-11 | 1 | -44/+67 |
| | | |||||
| * | Remove need for `type` keyword | Ginger Bill | 2017-02-10 | 1 | -49/+38 |
| | | |||||