View | Details | Raw Unified | Return to bug 16392
Collapse All | Expand All

(-)file_not_specified_in_diff (-10 / +24 lines)
Line 79 Link Here
79
 *  @author Cameron Riley (criley at ekmail.com)
Line 128 Link Here
128
        //System.out.println("Got char: "+Look);
129
        //System.out.println("Got char: "+ look);
129
--
Line 392 Link Here
392
    
Line 396 Link Here
396
        while (look == '*' || look == '/' || look == '^' || look == '&' || look == '=' ) {
396
        while (look == '*' || look == '/' || look == '^' || look == '&' || 
397
--
397
               look == '=' || look == '>' || look == '<' ) {
Line 403 Link Here
404
            if (look == '>') GreaterThan();
405
            if (look == '<') LessThan();
Lines 404-405 Link Here
404
    }
407
    }    
405
    
408
406
--
Line 440 Link Here
440
    
443
    /** Recognize and Translate a Greater Than  */
441
--
444
    private void GreaterThan() {
445
        Match('>');
446
        Term();
447
        tokens.add(new GreaterThanPtg());
448
    }
449
450
    /** Recognize and Translate a Less Than  */
451
    private void LessThan() {
452
        Match('<');
453
        Term();
454
        tokens.add(new LessThanPtg());
455
    }    
456
Line 453 Link Here
469
            if (look == '>') GreaterThan();
470
            if (look == '<') LessThan();

Return to bug 16392