Commit 2bc50a44 authored by Dylan Trotter's avatar Dylan Trotter

Properly init block type. Add MemoryErrorType.

parent 617df3da
......@@ -82,6 +82,7 @@ var builtinTypes = map[*Type]*builtinTypeInfo{
AttributeErrorType: {global: true},
BaseExceptionType: {init: initBaseExceptionType, global: true},
BaseStringType: {init: initBaseStringType, global: true},
BlockType: {init: initBlockType},
BoolType: {init: initBoolType, global: true},
BytesWarningType: {global: true},
DeprecationWarningType: {global: true},
......@@ -108,6 +109,7 @@ var builtinTypes = map[*Type]*builtinTypeInfo{
ListType: {init: initListType, global: true},
LongType: {init: initLongType, global: true},
LookupErrorType: {global: true},
MemoryErrorType: {global: true},
MethodType: {init: initMethodType},
ModuleType: {init: initModuleType},
NameErrorType: {global: true},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment