File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -7041,7 +7041,7 @@ const EasyCoder_Rest = {
7041
7041
if ( url [ 0 ] == `/` ) {
7042
7042
path = url . substr ( 1 ) ;
7043
7043
} else {
7044
- path = `${ window . location . origin } ${ rest } /${ url } ` ;
7044
+ path = `${ rest } /${ url } ` ;
7045
7045
}
7046
7046
}
7047
7047
@@ -7187,10 +7187,7 @@ const EasyCoder_Condition = {
7187
7187
const domain = compiler . domain [ domainName ] ;
7188
7188
const code = domain . condition . compile ( compiler ) ;
7189
7189
if ( code ) {
7190
- return {
7191
- domain : name ,
7192
- ...code
7193
- } ;
7190
+ return code ;
7194
7191
}
7195
7192
compiler . rewind ( ) ;
7196
7193
}
@@ -7748,11 +7745,8 @@ const EasyCoder_Compiler = {
7748
7745
} ,
7749
7746
7750
7747
addCommand : function ( item ) {
7751
- const pc = this . program . length ;
7752
- this . program . push ( {
7753
- pc,
7754
- ...item
7755
- } ) ;
7748
+ item . pc = this . program . length ;
7749
+ this . program . push ( item ) ;
7756
7750
} ,
7757
7751
7758
7752
addSymbol : function ( name , pc ) {
You can’t perform that action at this time.
0 commit comments