| 75 | constexpr size_t kJSValueStorageSize = 16; |
| 76 | |
| 77 | struct JSPropertyName : public BridgedValue<kJSPropertyNameStorageSize> { |
| 78 | using BridgedValue<kJSPropertyNameStorageSize>::BridgedValue; |
| 79 | }; |
| 80 | |
| 81 | struct JSValue : public BridgedValue<kJSValueStorageSize> { |
| 82 | using BridgedValue<kJSValueStorageSize>::BridgedValue; |
no outgoing calls