mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-23 06:05:24 +00:00
Introduce InstanceContext (#270)
* Add instance context with dummy field * Remove stub field
This commit is contained in:
committed by
GitHub
parent
a48c238ed7
commit
12df80da56
@@ -43,6 +43,14 @@ pub struct InstanceMetadata {
|
|||||||
// TODO: Change this to be a SmallVec for performance in common cases?
|
// TODO: Change this to be a SmallVec for performance in common cases?
|
||||||
#[serde(serialize_with = "path_serializer::serialize_vec_absolute")]
|
#[serde(serialize_with = "path_serializer::serialize_vec_absolute")]
|
||||||
pub relevant_paths: Vec<PathBuf>,
|
pub relevant_paths: Vec<PathBuf>,
|
||||||
|
|
||||||
|
/// Contains information about this instance that should persist between
|
||||||
|
/// snapshot invocations and is generally inherited.
|
||||||
|
///
|
||||||
|
/// If an instance has a piece of context attached to it, then the next time
|
||||||
|
/// that instance's instigating source is snapshotted directly, the same
|
||||||
|
/// context will be passed into it.
|
||||||
|
pub context: InstanceContext,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl InstanceMetadata {
|
impl InstanceMetadata {
|
||||||
@@ -51,6 +59,7 @@ impl InstanceMetadata {
|
|||||||
ignore_unknown_instances: false,
|
ignore_unknown_instances: false,
|
||||||
instigating_source: None,
|
instigating_source: None,
|
||||||
relevant_paths: Vec::new(),
|
relevant_paths: Vec::new(),
|
||||||
|
context: InstanceContext::default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -74,6 +83,13 @@ impl InstanceMetadata {
|
|||||||
..self
|
..self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn context(self, context: &InstanceContext) -> Self {
|
||||||
|
Self {
|
||||||
|
context: context.clone(),
|
||||||
|
..self
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for InstanceMetadata {
|
impl Default for InstanceMetadata {
|
||||||
@@ -82,6 +98,15 @@ impl Default for InstanceMetadata {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
||||||
|
pub struct InstanceContext {}
|
||||||
|
|
||||||
|
impl Default for InstanceContext {
|
||||||
|
fn default() -> Self {
|
||||||
|
InstanceContext {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Clone, PartialEq, Serialize, Deserialize)]
|
#[derive(Clone, PartialEq, Serialize, Deserialize)]
|
||||||
pub enum InstigatingSource {
|
pub enum InstigatingSource {
|
||||||
Path(#[serde(serialize_with = "path_serializer::serialize_absolute")] PathBuf),
|
Path(#[serde(serialize_with = "path_serializer::serialize_absolute")] PathBuf),
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
source: src/snapshot/tests/apply.rs
|
source: src/snapshot/tests/apply.rs
|
||||||
expression: tree_value
|
expression: tree_view
|
||||||
---
|
---
|
||||||
id: id-1
|
id: id-1
|
||||||
name: ROOT
|
name: ROOT
|
||||||
@@ -12,4 +12,5 @@ properties:
|
|||||||
metadata:
|
metadata:
|
||||||
ignore_unknown_instances: false
|
ignore_unknown_instances: false
|
||||||
relevant_paths: []
|
relevant_paths: []
|
||||||
children: []
|
context: {}
|
||||||
|
children: []
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
source: src/snapshot/tests/apply.rs
|
source: src/snapshot/tests/apply.rs
|
||||||
expression: tree_value
|
expression: tree_view
|
||||||
---
|
---
|
||||||
id: id-1
|
id: id-1
|
||||||
name: ROOT
|
name: ROOT
|
||||||
@@ -9,4 +9,5 @@ properties: {}
|
|||||||
metadata:
|
metadata:
|
||||||
ignore_unknown_instances: false
|
ignore_unknown_instances: false
|
||||||
relevant_paths: []
|
relevant_paths: []
|
||||||
children: []
|
context: {}
|
||||||
|
children: []
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
source: src/snapshot/tests/apply.rs
|
source: src/snapshot/tests/apply.rs
|
||||||
expression: tree_value
|
expression: tree_view
|
||||||
---
|
---
|
||||||
id: id-1
|
id: id-1
|
||||||
name: ROOT
|
name: ROOT
|
||||||
@@ -12,4 +12,5 @@ properties:
|
|||||||
metadata:
|
metadata:
|
||||||
ignore_unknown_instances: false
|
ignore_unknown_instances: false
|
||||||
relevant_paths: []
|
relevant_paths: []
|
||||||
children: []
|
context: {}
|
||||||
|
children: []
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
source: src/snapshot/tests/apply.rs
|
source: src/snapshot/tests/apply.rs
|
||||||
expression: tree_value
|
expression: tree_view
|
||||||
---
|
---
|
||||||
id: id-1
|
id: id-1
|
||||||
name: "Hello, world!"
|
name: "Hello, world!"
|
||||||
@@ -9,4 +9,5 @@ properties: {}
|
|||||||
metadata:
|
metadata:
|
||||||
ignore_unknown_instances: false
|
ignore_unknown_instances: false
|
||||||
relevant_paths: []
|
relevant_paths: []
|
||||||
children: []
|
context: {}
|
||||||
|
children: []
|
||||||
|
|||||||
@@ -10,8 +10,9 @@ added_instances:
|
|||||||
metadata:
|
metadata:
|
||||||
ignore_unknown_instances: false
|
ignore_unknown_instances: false
|
||||||
relevant_paths: []
|
relevant_paths: []
|
||||||
|
context: {}
|
||||||
name: New
|
name: New
|
||||||
class_name: Folder
|
class_name: Folder
|
||||||
properties: {}
|
properties: {}
|
||||||
children: []
|
children: []
|
||||||
updated_instances: []
|
updated_instances: []
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.client.lua
|
- /foo.client.lua
|
||||||
- /foo.meta.json
|
- /foo.meta.json
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: LocalScript
|
class_name: LocalScript
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.csv
|
- /foo.csv
|
||||||
- /foo.meta.json
|
- /foo.meta.json
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: LocalizationTable
|
class_name: LocalizationTable
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.csv
|
- /foo.csv
|
||||||
- /foo.meta.json
|
- /foo.meta.json
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: LocalizationTable
|
class_name: LocalizationTable
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ metadata:
|
|||||||
- /foo/init.lua
|
- /foo/init.lua
|
||||||
- /foo/init.server.lua
|
- /foo/init.server.lua
|
||||||
- /foo/init.client.lua
|
- /foo/init.client.lua
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: Folder
|
class_name: Folder
|
||||||
properties: {}
|
properties: {}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ metadata:
|
|||||||
- /foo/init.lua
|
- /foo/init.lua
|
||||||
- /foo/init.server.lua
|
- /foo/init.server.lua
|
||||||
- /foo/init.client.lua
|
- /foo/init.client.lua
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: Folder
|
class_name: Folder
|
||||||
properties: {}
|
properties: {}
|
||||||
@@ -28,6 +29,7 @@ children:
|
|||||||
- /foo/Child/init.lua
|
- /foo/Child/init.lua
|
||||||
- /foo/Child/init.server.lua
|
- /foo/Child/init.server.lua
|
||||||
- /foo/Child/init.client.lua
|
- /foo/Child/init.client.lua
|
||||||
|
context: {}
|
||||||
name: Child
|
name: Child
|
||||||
class_name: Folder
|
class_name: Folder
|
||||||
properties: {}
|
properties: {}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ metadata:
|
|||||||
- /root/init.lua
|
- /root/init.lua
|
||||||
- /root/init.server.lua
|
- /root/init.server.lua
|
||||||
- /root/init.client.lua
|
- /root/init.client.lua
|
||||||
|
context: {}
|
||||||
name: root
|
name: root
|
||||||
class_name: ModuleScript
|
class_name: ModuleScript
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.txt
|
- /foo.txt
|
||||||
- /foo.meta.json
|
- /foo.meta.json
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: StringValue
|
class_name: StringValue
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ metadata:
|
|||||||
Path: /foo.model.json
|
Path: /foo.model.json
|
||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.model.json
|
- /foo.model.json
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: IntValue
|
class_name: IntValue
|
||||||
properties:
|
properties:
|
||||||
@@ -20,6 +21,7 @@ children:
|
|||||||
metadata:
|
metadata:
|
||||||
ignore_unknown_instances: false
|
ignore_unknown_instances: false
|
||||||
relevant_paths: []
|
relevant_paths: []
|
||||||
|
context: {}
|
||||||
name: The Child
|
name: The Child
|
||||||
class_name: StringValue
|
class_name: StringValue
|
||||||
properties: {}
|
properties: {}
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.lua
|
- /foo.lua
|
||||||
- /foo.meta.json
|
- /foo.meta.json
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: ModuleScript
|
class_name: ModuleScript
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.lua
|
- /foo.lua
|
||||||
- /foo.meta.json
|
- /foo.meta.json
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: ModuleScript
|
class_name: ModuleScript
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ metadata:
|
|||||||
Path: /foo/hello.project.json
|
Path: /foo/hello.project.json
|
||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/hello.project.json
|
- /foo/hello.project.json
|
||||||
|
context: {}
|
||||||
name: direct-project
|
name: direct-project
|
||||||
class_name: Model
|
class_name: Model
|
||||||
properties: {}
|
properties: {}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ metadata:
|
|||||||
Path: /foo/default.project.json
|
Path: /foo/default.project.json
|
||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
name: indirect-project
|
name: indirect-project
|
||||||
class_name: Folder
|
class_name: Folder
|
||||||
properties: {}
|
properties: {}
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/other.project.json
|
- /foo/other.project.json
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
name: path-property-override
|
name: path-property-override
|
||||||
class_name: StringValue
|
class_name: StringValue
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ metadata:
|
|||||||
Path: /foo/default.project.json
|
Path: /foo/default.project.json
|
||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
name: children
|
name: children
|
||||||
class_name: Folder
|
class_name: Folder
|
||||||
properties: {}
|
properties: {}
|
||||||
@@ -25,6 +26,7 @@ children:
|
|||||||
ignore_unknown_instances: ~
|
ignore_unknown_instances: ~
|
||||||
path: ~
|
path: ~
|
||||||
relevant_paths: []
|
relevant_paths: []
|
||||||
|
context: {}
|
||||||
name: Child
|
name: Child
|
||||||
class_name: Model
|
class_name: Model
|
||||||
properties: {}
|
properties: {}
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/other.project.json
|
- /foo/other.project.json
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
name: path-project
|
name: path-project
|
||||||
class_name: Model
|
class_name: Model
|
||||||
properties: {}
|
properties: {}
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/other.project.json
|
- /foo/other.project.json
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
name: path-child-project
|
name: path-child-project
|
||||||
class_name: Folder
|
class_name: Folder
|
||||||
properties: {}
|
properties: {}
|
||||||
@@ -26,6 +27,7 @@ children:
|
|||||||
ignore_unknown_instances: ~
|
ignore_unknown_instances: ~
|
||||||
path: ~
|
path: ~
|
||||||
relevant_paths: []
|
relevant_paths: []
|
||||||
|
context: {}
|
||||||
name: SomeChild
|
name: SomeChild
|
||||||
class_name: Model
|
class_name: Model
|
||||||
properties: {}
|
properties: {}
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ metadata:
|
|||||||
- /foo/other.txt
|
- /foo/other.txt
|
||||||
- /foo/other.meta.json
|
- /foo/other.meta.json
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
name: path-project
|
name: path-project
|
||||||
class_name: StringValue
|
class_name: StringValue
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ metadata:
|
|||||||
Path: /foo/default.project.json
|
Path: /foo/default.project.json
|
||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
name: resolved-properties
|
name: resolved-properties
|
||||||
class_name: StringValue
|
class_name: StringValue
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ metadata:
|
|||||||
Path: /foo/default.project.json
|
Path: /foo/default.project.json
|
||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
name: unresolved-properties
|
name: unresolved-properties
|
||||||
class_name: StringValue
|
class_name: StringValue
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /bar.server.lua
|
- /bar.server.lua
|
||||||
- /bar.meta.json
|
- /bar.meta.json
|
||||||
|
context: {}
|
||||||
name: bar
|
name: bar
|
||||||
class_name: Script
|
class_name: Script
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.server.lua
|
- /foo.server.lua
|
||||||
- /foo.meta.json
|
- /foo.meta.json
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: Script
|
class_name: Script
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.server.lua
|
- /foo.server.lua
|
||||||
- /foo.meta.json
|
- /foo.meta.json
|
||||||
|
context: {}
|
||||||
name: foo
|
name: foo
|
||||||
class_name: Script
|
class_name: Script
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ metadata:
|
|||||||
Path: /foo/default.project.json
|
Path: /foo/default.project.json
|
||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
children:
|
children:
|
||||||
- id: id-2
|
- id: id-2
|
||||||
name: Child
|
name: Child
|
||||||
@@ -33,4 +34,5 @@ children:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/file.txt
|
- /foo/file.txt
|
||||||
- /foo/file.meta.json
|
- /foo/file.meta.json
|
||||||
|
context: {}
|
||||||
children: []
|
children: []
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ metadata:
|
|||||||
Path: /foo/default.project.json
|
Path: /foo/default.project.json
|
||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
children:
|
children:
|
||||||
- id: id-2
|
- id: id-2
|
||||||
name: Child
|
name: Child
|
||||||
@@ -33,4 +34,5 @@ children:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/file.txt
|
- /foo/file.txt
|
||||||
- /foo/file.meta.json
|
- /foo/file.meta.json
|
||||||
|
context: {}
|
||||||
children: []
|
children: []
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ metadata:
|
|||||||
- /root/init.lua
|
- /root/init.lua
|
||||||
- /root/init.server.lua
|
- /root/init.server.lua
|
||||||
- /root/init.client.lua
|
- /root/init.client.lua
|
||||||
|
context: {}
|
||||||
children:
|
children:
|
||||||
- id: id-2
|
- id: id-2
|
||||||
name: test
|
name: test
|
||||||
@@ -31,4 +32,5 @@ children:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /root/test.lua
|
- /root/test.lua
|
||||||
- /root/test.meta.json
|
- /root/test.meta.json
|
||||||
|
context: {}
|
||||||
children: []
|
children: []
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ metadata:
|
|||||||
- /root/init.lua
|
- /root/init.lua
|
||||||
- /root/init.server.lua
|
- /root/init.server.lua
|
||||||
- /root/init.client.lua
|
- /root/init.client.lua
|
||||||
|
context: {}
|
||||||
children:
|
children:
|
||||||
- id: id-2
|
- id: id-2
|
||||||
name: test
|
name: test
|
||||||
@@ -31,4 +32,5 @@ children:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /root/test.lua
|
- /root/test.lua
|
||||||
- /root/test.meta.json
|
- /root/test.meta.json
|
||||||
|
context: {}
|
||||||
children: []
|
children: []
|
||||||
|
|||||||
@@ -17,3 +17,4 @@ expression: redactions.redacted_yaml(changes)
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /root/test.lua
|
- /root/test.lua
|
||||||
- /root/test.meta.json
|
- /root/test.meta.json
|
||||||
|
context: {}
|
||||||
|
|||||||
@@ -16,4 +16,5 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.txt
|
- /foo.txt
|
||||||
- /foo.meta.json
|
- /foo.meta.json
|
||||||
|
context: {}
|
||||||
children: []
|
children: []
|
||||||
|
|||||||
@@ -16,4 +16,5 @@ metadata:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo.txt
|
- /foo.txt
|
||||||
- /foo.meta.json
|
- /foo.meta.json
|
||||||
|
context: {}
|
||||||
children: []
|
children: []
|
||||||
|
|||||||
@@ -16,4 +16,5 @@ metadata:
|
|||||||
- /foo/init.lua
|
- /foo/init.lua
|
||||||
- /foo/init.server.lua
|
- /foo/init.server.lua
|
||||||
- /foo/init.client.lua
|
- /foo/init.client.lua
|
||||||
|
context: {}
|
||||||
children: []
|
children: []
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ metadata:
|
|||||||
- /foo/src/init.server.lua
|
- /foo/src/init.server.lua
|
||||||
- /foo/src/init.client.lua
|
- /foo/src/init.client.lua
|
||||||
- /foo/default.project.json
|
- /foo/default.project.json
|
||||||
|
context: {}
|
||||||
children:
|
children:
|
||||||
- id: id-2
|
- id: id-2
|
||||||
name: hello
|
name: hello
|
||||||
@@ -32,4 +33,5 @@ children:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /foo/src/hello.txt
|
- /foo/src/hello.txt
|
||||||
- /foo/src/hello.meta.json
|
- /foo/src/hello.meta.json
|
||||||
|
context: {}
|
||||||
children: []
|
children: []
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ metadata:
|
|||||||
- /root/init.lua
|
- /root/init.lua
|
||||||
- /root/init.server.lua
|
- /root/init.server.lua
|
||||||
- /root/init.client.lua
|
- /root/init.client.lua
|
||||||
|
context: {}
|
||||||
children:
|
children:
|
||||||
- id: id-2
|
- id: id-2
|
||||||
name: test
|
name: test
|
||||||
@@ -31,4 +32,5 @@ children:
|
|||||||
relevant_paths:
|
relevant_paths:
|
||||||
- /root/test.lua
|
- /root/test.lua
|
||||||
- /root/test.meta.json
|
- /root/test.meta.json
|
||||||
|
context: {}
|
||||||
children: []
|
children: []
|
||||||
|
|||||||
Reference in New Issue
Block a user