mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
WIP: Fixed strings and scopes, still reworking impacted areas
This commit is contained in:
@@ -434,7 +434,7 @@ Toy_String* Toy_stringifyValue(Toy_Bucket** bucketHandle, Toy_Value value) {
|
||||
|
||||
switch(value.type) {
|
||||
case TOY_VALUE_NULL:
|
||||
return Toy_createString(bucketHandle, "<null>");
|
||||
return Toy_createString(bucketHandle, "<null>"); //TODO: remake "createString" to to handle params like this
|
||||
|
||||
case TOY_VALUE_BOOLEAN:
|
||||
return Toy_createString(bucketHandle, value.as.boolean ? "<true>" : "<false>");
|
||||
|
||||
Reference in New Issue
Block a user