Changeset 29

Show
Ignore:
Timestamp:
11/25/05 15:58:57 (3 years ago)
Author:
Jan-Klaas Kollhof
Message:

fixed missing semicolon in operators and codecs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jsolait/lib/codecs.js

    r23 r29  
    171171 
    172172    mod.__main__=function(){ 
    173     } 
     173    }; 
    174174}); 
  • trunk/jsolait/lib/operators.js

    r23 r29  
    2929            return a<b; 
    3030        } 
    31     } 
     31    }; 
    3232 
    3333    le=function(a, b){ 
     
    3939            return a<=b; 
    4040        } 
    41     } 
     41    }; 
    4242 
    4343    eq=function(a, b){ 
     
    4949            return a===b; 
    5050        } 
    51     } 
     51    }; 
    5252 
    5353    ne=function(a, b){ 
     
    5959            return a !== b; 
    6060        } 
    61     } 
     61    }; 
    6262 
    6363    ge=function(a, b){ 
     
    6969            return a>=b; 
    7070        } 
    71     } 
     71    }; 
    7272 
    7373    gt=function(a, b){ 
     
    7979            return a>b; 
    8080        } 
    81     } 
     81    }; 
    8282 
    8383    not=function(a){ 
     
    8787            return ! a; 
    8888        } 
    89     } 
     89    }; 
    9090 
    9191    mod.__main__=function(){ 
    9292 
    93     } 
     93    }; 
    9494 
    9595}); 
  • trunk/tools/build.js

    r20 r29  
    116116             } 
    117117        }    
    118  
    119  
    120118    }; 
    121119