factor/extra/infix/ast/ast.factor

12 lines
326 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 ;
2013-03-19 19:52:33 -04:00
TUPLE: ast-slice name from to step ;
2009-02-07 19:03:35 -05:00
TUPLE: ast-function name arguments ;
TUPLE: ast-op left right op ;
TUPLE: ast-negation term ;