File tree Expand file tree Collapse file tree 3 files changed +32
-4
lines changed Expand file tree Collapse file tree 3 files changed +32
-4
lines changed Original file line number Diff line number Diff line change @@ -5836,6 +5836,18 @@ const EasyCoder_Browser = {
5836
5836
}
5837
5837
} ,
5838
5838
5839
+ TH : {
5840
+
5841
+ compile : ( compiler ) => {
5842
+ compiler . compileVariable ( `browser` , `th` , false , `dom` ) ;
5843
+ return true ;
5844
+ } ,
5845
+
5846
+ run : ( program ) => {
5847
+ return program [ program . pc ] . pc + 1 ;
5848
+ }
5849
+ } ,
5850
+
5839
5851
TEXTAREA : {
5840
5852
5841
5853
compile : ( compiler ) => {
@@ -6166,6 +6178,8 @@ const EasyCoder_Browser = {
6166
6178
return EasyCoder_Browser . TR ;
6167
6179
case `td` :
6168
6180
return EasyCoder_Browser . TD ;
6181
+ case `th` :
6182
+ return EasyCoder_Browser . TH ;
6169
6183
case `textarea` :
6170
6184
return EasyCoder_Browser . TEXTAREA ;
6171
6185
case `trace` :
@@ -8902,12 +8916,12 @@ const EasyCoder = {
8902
8916
}
8903
8917
} ,
8904
8918
} ;
8905
- EasyCoder . version = `230628 ` ;
8919
+ EasyCoder . version = `240112 ` ;
8906
8920
EasyCoder . timestamp = Date . now ( ) ;
8907
8921
console . log ( `EasyCoder loaded; waiting for page` ) ;
8908
8922
8909
8923
function EasyCoder_Startup ( ) {
8910
- console . log ( `${ Date . now ( ) - EasyCoder . timestamp } ms: Page loaded; reset timer & start EasyCoder` ) ;
8924
+ console . log ( `${ Date . now ( ) - EasyCoder . timestamp } ms: Start EasyCoder` ) ;
8911
8925
EasyCoder . timestamp = Date . now ( ) ;
8912
8926
EasyCoder . scripts = { } ;
8913
8927
window . EasyCoder = EasyCoder ;
Original file line number Diff line number Diff line change @@ -2456,6 +2456,18 @@ const EasyCoder_Browser = {
2456
2456
}
2457
2457
} ,
2458
2458
2459
+ TH : {
2460
+
2461
+ compile : ( compiler ) => {
2462
+ compiler . compileVariable ( `browser` , `th` , false , `dom` ) ;
2463
+ return true ;
2464
+ } ,
2465
+
2466
+ run : ( program ) => {
2467
+ return program [ program . pc ] . pc + 1 ;
2468
+ }
2469
+ } ,
2470
+
2459
2471
TEXTAREA : {
2460
2472
2461
2473
compile : ( compiler ) => {
@@ -2786,6 +2798,8 @@ const EasyCoder_Browser = {
2786
2798
return EasyCoder_Browser . TR ;
2787
2799
case `td` :
2788
2800
return EasyCoder_Browser . TD ;
2801
+ case `th` :
2802
+ return EasyCoder_Browser . TH ;
2789
2803
case `textarea` :
2790
2804
return EasyCoder_Browser . TEXTAREA ;
2791
2805
case `trace` :
Original file line number Diff line number Diff line change 1
- EasyCoder . version = `230628 ` ;
1
+ EasyCoder . version = `240112 ` ;
2
2
EasyCoder . timestamp = Date . now ( ) ;
3
3
console . log ( `EasyCoder loaded; waiting for page` ) ;
4
4
5
5
function EasyCoder_Startup ( ) {
6
- console . log ( `${ Date . now ( ) - EasyCoder . timestamp } ms: Page loaded; reset timer & start EasyCoder` ) ;
6
+ console . log ( `${ Date . now ( ) - EasyCoder . timestamp } ms: Start EasyCoder` ) ;
7
7
EasyCoder . timestamp = Date . now ( ) ;
8
8
EasyCoder . scripts = { } ;
9
9
window . EasyCoder = EasyCoder ;
You can’t perform that action at this time.
0 commit comments