aboutsummaryrefslogtreecommitdiff
path: root/src/entity.c
Commit message (Collapse)AuthorAgeFilesLines
* Build as C++Ginger Bill2017-06-081-282/+0
|
* `bit_field`; Lexical sugar operators ≠ ≤ ≥Ginger Bill2017-06-031-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 windowsGinger Bill2017-05-281-0/+1
| | | | It's all done by reverse engineering it. I may be wrong...
* `default:` to `case:`; `no_alias` to `#no_alias`Ginger Bill2017-05-271-9/+16
|
* Fix issue #63 for block comments not terminating at an EOFGinger Bill2017-05-091-3/+6
|
* Fix subtype polymorphism implicit conversionGinger Bill2017-04-301-4/+4
|
* `fmt.String_Buffer`, Fix issue #44, Tweak overloading rulesGinger Bill2017-04-261-2/+13
|
* Fix `find_using_index_expr`Ginger Bill2017-04-231-4/+4
|
* Fix error printing for basic directivesGinger Bill2017-04-171-1/+3
|
* Fix addressing mode rules for `match in` statementsGinger Bill2017-04-131-0/+1
|
* Add branch labels for loops; using listGinger Bill2017-03-191-1/+15
|
* windows.odin TYPE_NAME to Type_Name; More SSA work and SSA printing for ↵Ginger Bill2017-03-121-0/+11
| | | | debugging
* Unexported struct fieldsGinger Bill2017-02-191-0/+1
|
* Fix immutable rules; add some general documentationGinger Bill2017-02-141-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.0Ginger Bill2017-02-111-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 Bill2017-02-111-0/+9
| | | | fix extension checking
* Only check files that have been truly imported.Ginger Bill2017-02-111-1/+1
|
* Remove Maybe type; Enum `names`Ginger Bill2017-02-101-0/+1
|
* Update code from OSX merge to be consistent with the rest of the codeGinger Bill2017-02-011-73/+2
| | | | Remove some dead code whilst I was here too :P
* Merge branch 'master' of https://github.com/zhiayang/Odinzhiayang2017-02-021-0/+2
|\
| * Change internals of `context`; Disable `immutable`Ginger Bill2017-02-011-0/+2
| |
* | oh boy, basic osx/unix supportzhiayang2017-02-021-2/+59
|/
* Library names - Only link with used foreign librariesGinger Bill2017-01-261-0/+15
|
* Change casting syntax: `cast(T)x` `transmute(T)x` et al.Ginger Bill2017-01-251-1/+3
|
* `using` `immutable` `thread_local` on variable declarationsGinger Bill2017-01-191-6/+7
|
* `immutable` field prefixGinger Bill2017-01-191-2/+2
|
* Comma for all field separators; Overloaded procedures follow exportation rulesGinger Bill2017-01-171-2/+3
|
* Best viable overloading procedure algorithm; `no_alias`; call expr style castsGinger Bill2017-01-171-0/+1
|
* Procedure overloadingGinger Bill2017-01-151-4/+11
|
* "Old style" enumsGinger Bill2017-01-081-3/+0
| | | | | name and value information `count`, `min_value`, `max_value` constants
* File reorganization for checker system.Ginger Bill2017-01-071-0/+190