]> gitweb.factorcode.org Git - factor.git/blob - extra/infix/ast/ast.factor
Switch to https urls
[factor.git] / extra / infix / ast / ast.factor
1 ! Copyright (C) 2009 Philipp Brüschweiler
2 ! See https://factorcode.org/license.txt for BSD license.
3 IN: infix.ast
4
5 TUPLE: ast-value value ;
6 TUPLE: ast-local name ;
7 TUPLE: ast-array name index ;
8 TUPLE: ast-slice name from to step ;
9 TUPLE: ast-function name arguments ;
10 TUPLE: ast-op left right op ;
11 TUPLE: ast-negation term ;