Show
Ignore:
Timestamp:
05/05/08 01:24:10 (4 months ago)
Author:
pmoura
Message:

Added support for escape sequences to the syntax coloring tests.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wenv/tests/source.lgt

    r4247 r4249  
    303303    number(X) --> [C], {0'0 =< C, C =< 0'9, X is C - 0'0}. 
    304304 
     305    escape_sequences :- 
     306        write('Quoted atom with a quote ('') inside.'), 
     307        write('Quoted atom with control escape sequences: \a \b \r \f \t \n \v'), 
     308        write('Quoted atom with an octal escape sequence: \123\.'), 
     309        write('Quoted atom with an hexa-decimal escape sequence: \x123f\.'). 
     310 
    305311:- end_object. 
    306312