aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-constants.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-03-08 17:50:45 +0000
committerdos-reis <gdr@axiomatics.org>2009-03-08 17:50:45 +0000
commit2da25f5f77b5e1b500ced33c51166dff7a43338d (patch)
treef9c1dcd49c3edead9ea03c7cc2c0b332d35738c6 /src/interp/sys-constants.boot
parent4eff9ac27bbd21e51053b5366558c18e561ae0fd (diff)
downloadopen-axiom-2da25f5f77b5e1b500ced33c51166dff7a43338d.tar.gz
* interp/fnewmeta.lisp (PARSE-Import): Parse extern entity
signature import. * interp/functor.boot (encodeLocalFunctionName): New. * interp/define.boot (compDefine1): Avoid getAbbreviation. (doIt): Handle %SignatureImport nodes. * interp/compiler.boot (emitLocalCallInsn): New. (applyMapping): Use it. (compApplication): Likewise. (bootDenotation): New. (getBasicFFIType): Likewise. (getFFIDatatype): Likewise. (getBootType): Likewise. (checkExternalEntityType): Likewise. (checkExternalEntity): Likewise. (removeModifiers): Likewise. (compSignatureImport): Likewise. * interp/vmlisp.lisp (|compileLispDefinition|): New. * interp/boot-pkg.lisp: Import genImportDeclaration. * boot/initial-env.lisp: Export genImportDeclaration. * boot/ast.boot: Tidy. Accept `readwrite' modifier.
Diffstat (limited to 'src/interp/sys-constants.boot')
-rw-r--r--src/interp/sys-constants.boot5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/interp/sys-constants.boot b/src/interp/sys-constants.boot
index 32105963..1277504e 100644
--- a/src/interp/sys-constants.boot
+++ b/src/interp/sys-constants.boot
@@ -363,6 +363,10 @@ $Syntax ==
$Boolean ==
'(Boolean)
+$Byte == '(Byte)
+$Int32 == '(Int32)
+$Int64 == '(Int64)
+
++ The SmallInteger domain constructor form
$SmallInteger ==
'(SingleInteger)
@@ -414,7 +418,6 @@ $DoubleFloat ==
$BigFloat ==
'(Float)
-
++ The String constructor domain form
$String ==
'(String)