factor/extra/infix/ast/ast.factor

12 lines
321 B
Factor
Raw Normal View History

! Copyright (C) 2009 Philipp Brüschweiler
! See http://factorcode.org/license.txt for BSD license.
2009-02-07 19:03:35 -05:00
IN: infix.ast
TUPLE: ast-number value ;
TUPLE: ast-local name ;
TUPLE: ast-array name index ;
TUPLE: ast-slice name from to ;
2009-02-07 19:03:35 -05:00
TUPLE: ast-function name arguments ;
TUPLE: ast-op left right op ;
TUPLE: ast-negation term ;