Home
last modified time | relevance | path

Searched refs:EXPR_INT (Results 1 – 3 of 3) sorted by relevance

/reactos/dll/win32/vbscript/
H A Dparse.h37 EXPR_INT, enumerator
H A Dparser.y396 : '0' { $$ = new_long_expression(ctx, EXPR_INT, 0); CHECK_ERROR; }
397 | tInt { $$ = new_long_expression(ctx, EXPR_INT, $1); CHECK_ERROR; }
H A Dcompile.c551 case EXPR_INT: in compile_expression()