pas2js: version 0.9.23

git-svn-id: trunk@39138 -
This commit is contained in:
Mattias Gaertner 2018-05-28 20:26:38 +00:00
parent 37ee69781e
commit 23b90ee315
2 changed files with 5 additions and 6 deletions

View File

@ -346,13 +346,15 @@ Works:
- typecast byte(longword) -> value & $ff
ToDos:
- bug:
v:=a[0] gives Local variable "a" is assigned but never used
- bug:
exit(something) gives function result not set
- check rtl.js version
- 'new', 'Function' -> class var use .prototype
- btArrayLit
a: array of jsvalue;
a:=[];
- bug:
v:=a[0] gives Local variable "a" is assigned but never used
- setlength(dynarray) modeswitch to create a copy
- static arrays
- clone multi dim static array

View File

@ -9,9 +9,6 @@ Compiler-ToDos:
-Fa<x>[,y] (for a program) load units <x> and [y] before uses is parsed
Add Windows macros, see InitMacros.
add options for names of globals like 'pas' and 'rtl'
FileCache:
uses 'in'
}
unit Pas2jsCompiler;
@ -29,7 +26,7 @@ uses
const
VersionMajor = 0;
VersionMinor = 9;
VersionRelease = 22;
VersionRelease = 23;
VersionExtra = '+beta';
DefaultConfigFile = 'pas2js.cfg';