Mercurial > lcfOS
view python/ppci/frontends/ks/builtin.py @ 121:347d7d8b96c0
Cleanup
author | Windel Bouwman |
---|---|
date | Sat, 12 Jan 2013 12:35:02 +0100 |
parents | 9e552d34bd60 |
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))