SpookyFM / hscript

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

haxelib version 2.0 of hscript doesn't work for haxe 2.10 (haxe 3.0 compat) #12

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. install hscript using haxelib
2. include it in a project, using haxe 2.10
3. build

What is the expected output? What do you see instead?
expected -> compiles
i see -> "Class not found: FastList"

This is fixed in SVN, and is basically:
        tokens = new FastList<Token>();
to
        tokens = new haxe.FastList<Token>();

.

What version of the product are you using? On what operating system?
hscript 2.0, haxe 2.10, on mac

Please provide any additional information below.

Original issue reported on code.google.com by br...@lashpoint.com on 21 Mar 2013 at 1:26

GoogleCodeExporter commented 9 years ago
This is always an issue for me when I install a new version of HScript, since I 
have to re-edit it´s file. Any chance a new version will be released with this 
fix?

Original comment by alexandr...@gmail.com on 17 Jun 2013 at 7:54