Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Do not report arrays as uninitialized when the index is missing. | 72e93bd234743a438fb0a5c105514bf732c22b89 | lep | 2017-12-20 14:59:10 |
Better error messages. | ad8342582ac3617280f471d889b1766be272858b | lep | 2017-11-15 17:52:08 |
Handle wrong shadowing. | 0500a60ef11f39c4f33044e26c29798f6d8445b5 | lep | 2017-02-19 14:37:21 |
Added checks for natives which behave bad in a globals block. | 3e6ac270dda9ad695723d3bc2aac4d69a2fdf87a | lep | 2017-02-19 10:57:33 |
Update readme.md | 2c9177dd5482ed8c4c1464a4ade37c301205fe6b | lep | 2017-02-01 17:42:49 |
Public git release. | 2da78f3665ac4f53f5833c6a48ebbeaabea0cd49 | lep | 2017-02-01 16:42:21 |
Better ifdef-handling for aligned malloc. | d95ebafa7204e49d84a9fed8cdeb01713dd0bc82 | lep | 2017-02-01 16:41:07 |
Makefile changes. | 0458bb26764aad1caec71ccf721e84a28c699ee0 | lep | 2017-02-01 15:48:25 |
Can now compile on freebsd and linux from one branch. | 0772c4bd17dcfc389ca0e887b4bbceda8e46fa8e | lep | 2017-01-07 21:05:10 |
More descriptive check for assignment. | 474462b44fe20e958e8c6a3b51ba2da9c4a46451 | lep | 2016-11-24 16:47:15 |
Actually add all the sources to the release zipball | 151ae88aac4c3ac8aae432a4a240239f652fa8f4 | lep | 2016-11-10 15:30:38 |
Don't treat ``.'' as a valid real value. | 72e5087e22af66de0765c6d4f9ceae154725e2c2 | lep | 2016-10-24 14:55:02 |
Also split on \r in flag parser. | 519d685ab24864716e3a1ecfd797790a327868ca | lep | 2016-08-28 12:41:08 |
Improved errors for function-calls. | 5a50178a03c5aa3d153e8699070942327fde0b7b | lep | 2016-08-27 18:44:01 |
A very strange error with newlines and comments. | d822cacbd889fe723102102c8a09d578d90f013e | lep | 2016-08-21 09:15:00 |
Added +nosyntaxerror and +nosemanticerror | e755e12b3cab1d5069574e34d22633dd420bb230 | lep | 2016-05-07 13:42:57 |
MinGW fixes. | f579fad932039f1bca43e7612154f5b7dc4aea4f | lep | 2016-03-13 19:29:36 |
Added +shadow description to -h | 6a62b1ecf773175992a2a430a178fffb5532e467 | lep | 2016-03-13 19:35:20 |
Reduced duplicate code from variable decleration. | 01d6f01ebf7c2df9f58aea1bba61bae8a270b520 | lep | 2016-03-13 19:03:34 |
Added optional variable shadowing warning. | 2a0b36f50d2850c4c2ff09f503e6ffad6abf58d9 | lep | 2016-03-13 14:30:36 |
File | Lines added | Lines deleted |
---|---|---|
grammar.y | 1 | 1 |
tests/should-fail/dont-report-arrays-as-uninitialized.j | 4 | 0 |
File grammar.y changed (mode: 100644) (index c3be76c..939157c) | |||
... | ... | expr: intexpr { $$.ty = gInteger; } | |
233 | 233 | yyerrorex(semanticerror, ebuf); | yyerrorex(semanticerror, ebuf); |
234 | 234 | } | } |
235 | 235 | checkwrongshadowing(tan, 0); | checkwrongshadowing(tan, 0); |
236 | if(infunction && ht_lookup(curtab, $1.str) && !ht_lookup(&initialized, $1.str) ){ | ||
236 | if(!tan->isarray && infunction && ht_lookup(curtab, $1.str) && !ht_lookup(&initialized, $1.str) ){ | ||
237 | 237 | char ebuf[1024]; | char ebuf[1024]; |
238 | 238 | snprintf(ebuf, 1024, "Variable %s is uninitialized", $1.str); | snprintf(ebuf, 1024, "Variable %s is uninitialized", $1.str); |
239 | 239 | yyerrorline(semanticerror, lineno - 1, ebuf); | yyerrorline(semanticerror, lineno - 1, ebuf); |
File tests/should-fail/dont-report-arrays-as-uninitialized.j added (mode: 100644) (index 0000000..45b6b3a) | |||
1 | function test takes nothing returns string | ||
2 | local string array s | ||
3 | return s | ||
4 | endfunction |