Add $SymbolIterator

This commit is contained in:
Andrew Morris
2023-05-29 14:52:29 +10:00
parent 702506d315
commit 79b8523758
4 changed files with 14 additions and 5 deletions

View File

@@ -27,6 +27,7 @@ pub enum BuiltinName {
RangeError,
Symbol,
SymbolIterator,
}
pub const BUILTIN_NAMES: [&str; BuiltinName::COUNT] = [
@@ -44,6 +45,7 @@ pub const BUILTIN_NAMES: [&str; BuiltinName::COUNT] = [
"TypeError",
"RangeError",
"Symbol",
"SymbolIterator",
];
pub const BUILTIN_COUNT: usize = BuiltinName::COUNT;