| 3101 | Object *Object::sFloatPrototype; |
| 3102 | |
| 3103 | Object *Object::ValueBase(ExprTokenType &aValue) |
| 3104 | { |
| 3105 | switch (TypeOfToken(aValue)) |
| 3106 | { |
| 3107 | case SYM_STRING: return Object::sStringPrototype; |
| 3108 | case SYM_INTEGER: return Object::sIntegerPrototype; |
| 3109 | case SYM_FLOAT: return Object::sFloatPrototype; |
| 3110 | } |
| 3111 | return nullptr; |
| 3112 | } |
| 3113 | |
| 3114 | |
| 3115 |
nothing calls this directly
no test coverage detected