Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixes #6532 array bounds check for non zero based arrays on the js backend ↵ | skilchen | 2017-11-06 | 1 | -1/+1 |
| | | | | (#6550) | ||||
* | deprecated unary '<' | Andreas Rumpf | 2017-10-29 | 1 | -3/+3 |
| | |||||
* | first steps of making 'opt' a first class type for Nim | Andreas Rumpf | 2017-09-25 | 1 | -1/+1 |
| | |||||
* | some work to make 'opt' a first class type | Andreas Rumpf | 2017-09-24 | 1 | -5/+5 |
| | |||||
* | first implementation of the 'func' keyword | Andreas Rumpf | 2017-09-23 | 1 | -4/+4 |
| | |||||
* | fixes #6096 | Araq | 2017-07-17 | 1 | -1/+1 |
| | |||||
* | fixes a JS codegen regression | Andreas Rumpf | 2017-07-10 | 1 | -3/+23 |
| | |||||
* | fixes #5608 | Andreas Rumpf | 2017-07-09 | 1 | -0/+4 |
| | |||||
* | fixes #6035 | Araq | 2017-06-30 | 1 | -1/+1 |
| | |||||
* | fixes #5517 | Andreas Rumpf | 2017-06-30 | 1 | -0/+2 |
| | |||||
* | fixes #5974 | Andreas Rumpf | 2017-06-29 | 1 | -4/+8 |
| | |||||
* | fixes #5563 | Andreas Rumpf | 2017-06-29 | 1 | -3/+3 |
| | |||||
* | fixes #4703 | Andreas Rumpf | 2017-06-29 | 1 | -1/+10 |
| | |||||
* | JS gen: fixes regression | Andreas Rumpf | 2017-06-26 | 1 | -7/+15 |
| | |||||
* | fixes #5933 | Andreas Rumpf | 2017-06-03 | 1 | -2/+17 |
| | |||||
* | fixes #4139 | Andreas Rumpf | 2017-06-03 | 1 | -8/+15 |
| | |||||
* | review and merge zahary's work (#5849) | zah | 2017-06-03 | 1 | -128/+189 |
| | | | | | | | | | * proper indentation for the generated JS code * improved dead-code elimination for JavaScript * test the JS dead-code elimination A new test spec has been added - "maxcodesize". It specifies the maximum size of the generated code in bytes. | ||||
* | Fixed const sets in JS (#5790) | Yuriy Glukhov | 2017-05-10 | 1 | -1/+0 |
| | |||||
* | JS codegen: produce better code for constant sets | Andreas Rumpf | 2017-05-01 | 1 | -2/+8 |
| | |||||
* | js codegen: emit more line information | Andreas Rumpf | 2017-04-26 | 1 | -12/+14 |
| | |||||
* | Implementing `repr` for JS (#5578) | Silvio | 2017-03-31 | 1 | -9/+43 |
| | |||||
* | Merge remote-tracking branch 'origin/concepts-rebased' into araq | Andreas Rumpf | 2017-03-31 | 1 | -0/+2 |
|\ | |||||
| * | introduce tyInferred for the unbound concept type params | Zahary Karadjov | 2017-03-24 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Why is tyInferred needed? The bindings in TCandidate are capable of inferring types within a single call expression. In concepts, we need to infer types in the same way, but across the whole body of the concept. Previously, once a concept type param was inferred, it was destructively mutated using t.assignType, but this proved to be problematic in the presence of overloads, because the bindings established while a non-matching overload is tested must be reverted/forgotten. tyInferred offers a non-destructive way to keep track of the inference progress. While introducing new types usually requires a lot of code paths in the compiler to updated, currently tyInferred is only a short-lived type within the concept body pass and it's unlikely to introduce breakage elsewhere in the compiler. | ||||
* | | added a codegen note | Andreas Rumpf | 2017-03-29 | 1 | -0/+1 |
|/ | |||||
* | Fixes #5062 (#5527); JS: holes in enums | Silvio | 2017-03-15 | 1 | -9/+1 |
| | |||||
* | Merge branch 'devel' into faster-nimsuggest | Andreas Rumpf | 2017-02-24 | 1 | -1/+1 |
|\ | |||||
| * | removed compiler internal list implementation (#5371) | Arne Döring | 2017-02-22 | 1 | -1/+1 |
| | | |||||
* | | big compiler refactoring; avoid globals for multi method dispatcher generation | Andreas Rumpf | 2017-02-22 | 1 | -4/+4 |
|/ | |||||
* | made nodecl implicit for vars in the js backend. (#5297) | Michael Jendrusch | 2017-01-29 | 1 | -1/+1 |
| | |||||
* | fix genderef of jsgen (#5274) | shsnow23 | 2017-01-24 | 1 | -1/+1 |
| | |||||
* | Fixes #5271 (#5273) | Yuriy Glukhov | 2017-01-24 | 1 | -1/+2 |
| | |||||
* | Fixup #5240 (#5270) | Yuriy Glukhov | 2017-01-23 | 1 | -2/+2 |
| | |||||
* | fixes #5234 (#5240) | Michael Jendrusch | 2017-01-20 | 1 | -7/+29 |
| | |||||
* | Fixes #5244 (#5245) | Yuriy Glukhov | 2017-01-18 | 1 | -0/+1 |
| | |||||
* | Removed mangling of object fields for the js target only. (#5226) | Michael Jendrusch | 2017-01-17 | 1 | -8/+7 |
| | | | | | | | | * removed mangling of object fields for the js target only. * changed default mangling behaviour for the php target as well. * Added test for unorthodox field names (reserved words and operators). Adjusted field accessors and object constructors / new to be ECMAScript first edition compatible, when using fieldnames which are reserved words. | ||||
* | happy new year | Araq | 2017-01-07 | 1 | -3/+3 |
| | |||||
* | removed tyArrayConstr completely from the compiler; introduced tyAlias ↵ | Araq | 2016-11-14 | 1 | -13/+12 |
| | | | | instead in preparation for further bugfixes | ||||
* | new dependency tracking for nimsuggest | Araq | 2016-11-05 | 1 | -2/+4 |
| | |||||
* | refactoring complete: explicit ident cache | Araq | 2016-10-31 | 1 | -1/+1 |
| | |||||
* | clean up tyMutable remnants | Jacek Sieka | 2016-10-24 | 1 | -3/+2 |
| | |||||
* | clean up tyConst remnants | Jacek Sieka | 2016-10-24 | 1 | -2/+2 |
| | |||||
* | clean up tyBigNum remnants | Jacek Sieka | 2016-10-24 | 1 | -4/+3 |
| | |||||
* | remove remnants of tyIter | Jacek Sieka | 2016-10-24 | 1 | -1/+2 |
| | |||||
* | JS: Fixed ICE on ptr assignment | Yuriy Glukhov | 2016-09-20 | 1 | -6/+14 |
| | |||||
* | fixes #4673 | Andreas Rumpf | 2016-09-01 | 1 | -1/+1 |
| | |||||
* | Fixed codegen for asmNoStackFrame pragma. More bulletproof frame restoration. | Yuriy Glukhov | 2016-08-27 | 1 | -6/+8 |
| | |||||
* | Restore framePtr after exceptions | Yuriy Glukhov | 2016-08-27 | 1 | -4/+10 |
| | |||||
* | Fixed js codegen issue for uncaught exceptions. | Yuriy Glukhov | 2016-08-27 | 1 | -1/+2 |
| | |||||
* | minor things | Andreas Rumpf | 2016-08-24 | 1 | -1/+1 |
| | |||||
* | fixes #4632 | Andreas Rumpf | 2016-08-23 | 1 | -8/+9 |
| |