Add initial working 'for x in y' loop
Make for _ in _ loops use pattern matches.
Add parsing support for iter loops
Support a terminating ',' at the end of arrays.
Add support for \u{...} escape sequences.
Remove a few FIXMEs from libstd
Allow for hidden exports to happen automatically.
Move towards automatically creating hidden exports.
For the sake of efficiency, return -1 from charval.
Escape '\' embedded in strings correctly.
Add hex and unsigned modifiers to std.put
Fix integer parsing for nondecimal bases.
Fix escape characters for strings.
Don't make shadowed vars conflict.
Don't error on resolving specialized generics.
remove 'isgeneric()' property from type.
Rename isgeneric() to needfreshen()
Balance the bind()/unbind() calls.
Make integer parsing return an option
Add support for constraints in types.
Fix hash table implementation.
More internals leaking out through exports.
Evaluate patterns in their block's scope.
Specialize specializes specialized types correctly
Take the address of const funcs.
Suport taking addresses of functions for nested calls.
We don't need both maxdid and ndecls.
Push and pop stabs correctly when loading usefiles.
Merge branch 'master' of git+ssh://git.eigenstate.org/git/ori/mc
Merge branch 'master' of git+ssh://git.eigenstate.org/git/ori/mc
Add fixes for generic types that need to be respecialized.
Abort on overly long character constants.
Merge branch 'master' of git+ssh://git.eigenstate.org/git/ori/mc
Add fix for byte multiplies.
Support utf8 character values.
Add missing 'incret.myr' test.
Drain increment queue before jumping to returns.
Fix the random number de-biasing.
Fix minor formatting issue.
Add ranged random generation
Make bigint literals work.
I should avoid having tests leak.
Make strsplit() use strfind()
Add more tests for strfind()
Reenable removal of redundant movs.
Convert main() to effectively return void.
Collaps multiple decls into one line
Fix undo accidental line swap.
Allow multiple decls on one line.
Install specialized declarations before fixup()
Make more internal bits public as bug workaround.
Collect all of the substitutions for specializing.
Make htab.myr's 'Initsz' public
More work towards getting std.htab() working.
Merge branch 'master' of git+ssh://git.eigenstate.org/git/ori/mc
Update all names in a namespace.
Handle boundary condition when splitting strings.
Make sys-linux match sys-osx
Merge branch 'master' of git+ssh://git.eigenstate.org/git/ori/mc
Add missing slpush implementation.
Merge branch 'master' of git+ssh://git.eigenstate.org/git/ori/mc
More work on the DNS resolution code.
Add string strip functions.
Just use 'movs' for all blits. It's faster anwyays.
Zero alignments should just return the value.
More work on DNS resolver.
Fix a test I failed to convert.
Merge branch 'master' of git+ssh://git.eigenstate.org/git/ori/mc
Add range checking for integers.
Add a test for large integer literals.
Handle temp paths with '/' in the name.
Split response reading from dumping.
Don't insert synth types into the dedup table.
Interpret PTR and TTL values correctly.
Do a better job of debug dumps.
Merge branch 'master' of git+ssh://git.eigenstate.org/git/ori/mc
Start generating DNS queries.
Fix the connection to the DNS server.
Add start of DNS resolver.