aboutsummaryrefslogtreecommitdiff
path: root/core/mem.odin
Commit message (Expand)AuthorAgeFilesLines
...
* Remove := with var and :: with constGinger Bill2017-06-121-56/+56
* Make `rune` a basic type and not an alias; Remove `byte`Ginger Bill2017-06-061-4/+4
* Change naming convention from Ada_Like to RustLikeGinger Bill2017-05-281-23/+23
* Syntax change: cast(T)x => T(x); union_cast(T)x => x.(T); transmute(T)x => tr...Ginger Bill2017-04-301-11/+11
* Change interval syntax: .. open range, ..< half-closed rangeGinger Bill2017-04-201-2/+2
* len, cap, make; remove .count, .capacity, new_sliceGinger Bill2017-04-021-6/+6
* Begin work on the custom backendGinger Bill2017-03-051-31/+10
* Ellipsis is now just `..`; Remove half-closed range operator and treat all of...Ginger Bill2017-02-261-2/+2
* ++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ~...Ginger Bill2017-02-261-3/+3
* Remove need for `type` keywordGinger Bill2017-02-101-2/+2
* Remove Maybe type; Enum `names`Ginger Bill2017-02-101-35/+34
* Dynamic arraysGinger Bill2017-01-291-0/+3
* Overloaded `free`; 3 dotted ellipsisv0.0.6aGinger Bill2017-01-281-2/+2
* Remove while loop and readd c-style for loops i.e. all loops are just `for`Ginger Bill2017-01-271-3/+2
* `in` keyword for `for` and `match type`Ginger Bill2017-01-271-4/+4
* Library names - Only link with used foreign librariesGinger Bill2017-01-261-3/+3
* Change casting syntax: `cast(T)x` `transmute(T)x` et al.Ginger Bill2017-01-251-12/+12
* Change cast syntax, int(x), []byte(s), (^int)(p)Ginger Bill2017-01-171-12/+12
* Comma for all field separators; Overloaded procedures follow exportation rulesGinger Bill2017-01-171-7/+7
* Fix core library; Disable adding entity definitions for blank identifiersv0.0.5eGinger Bill2017-01-071-27/+6
* Fix init_arena_from_contextGinger Bill2017-01-031-1/+1
* `while`; `range` is now `for`; remove ++ and --Ginger Bill2017-01-031-12/+15
* Fix parameter/field lists and #import #include syntaxGinger Bill2017-01-021-40/+38
* Nearly finished Jai-like declarationsGinger Bill2017-01-011-40/+38
* Begin transition to Jai-like syntaxGinger Bill2017-01-011-34/+34
* Bring back `enum` but using iotaGinger Bill2017-01-011-4/+5
* Handle calling conventions correctlyGinger Bill2016-12-221-4/+4
* Generic (grouped) declarations: var, let, const, type, import, includeGinger Bill2016-12-201-14/+17
* Remove `enum` for favour of Go-style enumerationsGinger Bill2016-12-191-9/+4
* Change var decl syntaxGinger Bill2016-12-181-31/+31
* Change record field syntaxGinger Bill2016-12-181-6/+6
* var/const decl; remove `:` from parameter listsGinger Bill2016-12-181-33/+33
* Change of `proc` and `type` declaration syntax to "prefix" styleGinger Bill2016-12-181-32/+32
* Semicolons mandatory again (and probably forever now...)Ginger Bill2016-12-161-132/+148
* Custom entry points on Windows (DllMain; WinMain)Ginger Bill2016-12-091-4/+4
* `build_dll`; Require an entry point procedure `main`Ginger Bill2016-12-081-4/+4
* Go/BCPL style semicolon insertion during tokenizing stageGinger Bill2016-12-051-123/+123
* Semicolons are required; `when` condition for certain file scope declarations...Ginger Bill2016-12-011-127/+127
* Minor Style FixesGinger Bill2016-10-221-17/+16
* Add Pointer ArithmeticGinger Bill2016-10-121-5/+129
* Implicit Values: `context`; Fix lvalue selector assignments; Fix offset_of* f...Ginger Bill2016-10-101-1/+1
* Untyped `nil`Ginger Bill2016-10-061-3/+3
* Update Standard Library; Fix Type_Info for integersGinger Bill2016-09-281-2/+62
* Bug Fixes: some assertions; variable inits;Ginger Bill2016-09-241-0/+18
* Fix push_* with better defer systemGinger Bill2016-09-231-0/+131