number_object.lut.h00001
00002
00003 #include "lookup.h"
00004
00005 using namespace KJS;
00006
00007 namespace KJS {
00008
00009 static const char numberTableStrings[] = {
00010 "\0"
00011 "NEGATIVE_INFINITY\0"
00012 "POSITIVE_INFINITY\0"
00013 "MAX_VALUE\0"
00014 "MIN_VALUE\0"
00015 "NaN\0"
00016 };
00017
00018
00019 static const struct HashEntry numberTableEntries[] = {
00020 { 19, NumberObjectImp::PosInfinity, DontEnum|DontDelete|ReadOnly, 0, -1 },
00021 { 37, NumberObjectImp::MaxValue, DontEnum|DontDelete|ReadOnly, 0, -1 },
00022 { 0, 0, 0, 0, -1 },
00023 { 57, NumberObjectImp::NaNValue, DontEnum|DontDelete|ReadOnly, 0, 5 },
00024 { 47, NumberObjectImp::MinValue, DontEnum|DontDelete|ReadOnly, 0, -1 },
00025 { 1, NumberObjectImp::NegInfinity, DontEnum|DontDelete|ReadOnly, 0, -1 }
00026 };
00027
00028 const struct HashTable numberTable = { 2, 6, numberTableEntries, 5, numberTableStrings};
00029
00030 }
|