xo-interpreter2 stack: handle operator expressions w/ qliterals
This commit is contained in:
parent
9920812d42
commit
650a9fa95f
2 changed files with 2 additions and 1 deletions
|
|
@ -88,7 +88,7 @@ namespace xo {
|
|||
return Token(tokentype::tk_symbol, txt);
|
||||
}
|
||||
/** token representing quote @c "'" **/
|
||||
static Token quote() { return Token(tokentype::tk_quote); }
|
||||
static Token quote_token() { return Token(tokentype::tk_quote); }
|
||||
/** token representing left angle bracket @c "<" **/
|
||||
static Token leftangle() { return Token(tokentype::tk_leftangle); }
|
||||
/** token representing right angle bracket @c ">" **/
|
||||
|
|
|
|||
|
|
@ -429,6 +429,7 @@ namespace xo {
|
|||
|
||||
break;
|
||||
}
|
||||
case '#':
|
||||
case 'a': case 'A':
|
||||
case 'b': case 'B':
|
||||
case 'c': case 'C':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue