Changeset 883fedc in mainline for uspace/app/sbi/src/lex.c


Ignore:
Timestamp:
2010-04-23T23:09:56Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
37c9fc8
Parents:
80badbe (diff), 6c39a907 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge from lp:~jsvoboda/helenos/sysel. New: generic classes, autoboxing, delegates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/lex.c

    r80badbe r883fedc  
    8080        { lc_class,     "class" },
    8181        { lc_constructor,       "constructor" },
     82        { lc_deleg,     "deleg" },
    8283        { lc_do,        "do" },
    8384        { lc_else,      "else" },
     
    210211        switch (lem->lclass) {
    211212        case lc_ident:
    212                 printf("(%d)", lem->u.ident.sid);
     213                printf("('%s')", strtab_get_str(lem->u.ident.sid));
    213214                break;
    214215        case lc_lit_int:
Note: See TracChangeset for help on using the changeset viewer.