SpookyFM / hscript

Automatically exported from code.google.com/p/hscript
0 stars 0 forks source link

Parser.hx compilation fails on haxe 2.09 (local variable "code" used without being initialized) #9

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The source code fails to compile using haxe 2.09 because the variable code is 
not initialized, the fix is simple:

Parser.hx -> Line 724:

Change
  var code;
to
  var code = "";

Original issue reported on code.google.com by federico...@gmail.com on 18 May 2012 at 3:23

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r46.

Original comment by ncanna...@gmail.com on 24 May 2012 at 9:44