Google Code Exporter

Results 11117 issues of Google Code Exporter

``` if(something()) { integer foo = 42 } else { foo = 666 } This nonsense compiles and executes, albeit with undefined behavior. Fix scoping rules to be enforced properly....

bug
Compiler

``` Fix the LLVM code generated by operators that need to short-circuit (i.e. && and || for now). ``` Original issue reported on code.google.com by `[email protected]` on 5 Sep 2014...

bug
Compiler

``` Compilation can proceed blindly and attempt to generate code based on faulty input (i.e. code with type errors). ``` Original issue reported on code.google.com by `[email protected]` on 5 Sep...

bug
Compiler

``` Review code for chained assignments, particularly ones involving compound operands, and make sure all edge cases are handled correctly. Unit tests should be written to help confirm this in...

bug
Compiler

``` Code blocks with no prefix keyword are currently not supported. ``` Original issue reported on code.google.com by `[email protected]` on 5 Sep 2014 at 5:29

enhancement
Compiler

``` Assignment operations are not properly type checked. Both trivial and compound Left-Hand-Side assignments need to be type checked. ``` Original issue reported on code.google.com by `[email protected]` on 5 Sep...

bug
Compiler

``` It is not enforced that all type-match or pattern-match overloads return the same type. This can cause bogosity. Add type safety checks to ensure either: - All overloads return...

bug
Compiler

``` Identifier shadowing is currently not detected/prohibited correctly by the Epoch compiler. ``` Original issue reported on code.google.com by `[email protected]` on 5 Sep 2014 at 5:26

bug
Compiler

``` Implement basic foreach() loops for iterating over a range or container. Should support the use of generators and numeric ranges, when available. entrypoint : { foreach(integer x in [100..2])...

enhancement
Compiler

``` Implement various primitive datatypes: 8-bit byte 64-bit integer 64-bit floating point SIMD intrinsic types? And of course anything else that makes sense (suggestions welcome). ``` Original issue reported on...

enhancement
Compiler