We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fc42c3 commit 55385e8Copy full SHA for 55385e8
hld/Eval.hx
@@ -989,7 +989,7 @@ class Eval {
989
return str;
990
}
991
992
- function readBytesStrAt(length, read: Int->Int, t:HLType, pos:String) : String {
+ function readBytesStrAt( length : Int , read : Int->Int, t : HLType, pos : String) : String {
993
var pos = toInt(eval(pos));
994
var blen = align.typeSize(t);
995
if( pos < 0 || (length >= 0 && pos > length-blen) )
@@ -1021,7 +1021,7 @@ class Eval {
1021
return s.file+":" + s.line;
1022
1023
1024
- function readRegAddress(index) : VarAddress {
+ function readRegAddress( index ) : VarAddress {
1025
var r = module.getFunctionRegs(funIndex)[index];
1026
if( r == null )
1027
return ANone;
0 commit comments