Mercurial > lcfOS
view python/ks/builtin.py @ 179:0f3b1adfd416
LR(0) parser
author | Windel Bouwman |
---|---|
date | Sat, 04 May 2013 18:50:36 +0200 |
parents | 91af0e40f868 |
children |
line wrap: on
line source
from .nodes import * boolean = BaseType('boolean', 8) integer = BaseType('integer', 8) real = BaseType('real', 8) char = BaseType('char', 1) void = BaseType('void', 0) chr_func = BuiltinProcedure('chr', ProcedureType([Parameter('value', 'x', integer)], char))