mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-23 06:05:24 +00:00
* Stub implementation * Flesh out feature and add tests. Other snapshots currently failing. * Blacklist .meta.json in JSON handler * Write to correct property (Source) instead of Value * Update changelog
24 lines
447 B
Plaintext
24 lines
447 B
Plaintext
---
|
|
source: rojo-test/src/build_test.rs
|
|
expression: contents
|
|
---
|
|
<roblox version="4">
|
|
<Item class="ModuleScript" referent="0">
|
|
<Properties>
|
|
<string name="Name">json_as_lua</string>
|
|
<string name="Source">return {
|
|
["1invalidident"] = "nice",
|
|
array = {1, 2, 3},
|
|
["false"] = false,
|
|
float = 1234.5452,
|
|
int = 1234,
|
|
null = nil,
|
|
object = {
|
|
hello = "world",
|
|
},
|
|
["true"] = true,
|
|
}</string>
|
|
</Properties>
|
|
</Item>
|
|
</roblox>
|