| 22 | using namespace glua::parser; |
| 23 | |
| 24 | static GluaStorageValue nil_storage_value() |
| 25 | { |
| 26 | GluaStorageValue value; |
| 27 | value.type = thinkyoung::blockchain::StorageValueTypes::storage_value_null; |
| 28 | value.value.int_value = 0; |
| 29 | return value; |
| 30 | } |
| 31 | |
| 32 | static GluaStorageValue tokens_to_lua_value(lua_State *L, GluaTokenParser *token_parser, bool *result) |
| 33 | { |
no outgoing calls
no test coverage detected