Change to use nodePath instead of sourceRange for Operations (#7320)

* Add NodePath to operations

* Change to use nodePath to get pathToNode instead of sourceRange

* Add additional node path unit test

* Update output

* Fix import statement NodePaths

* Update output

* Factor into function
This commit is contained in:
Jonathan Tran
2025-06-05 12:24:34 -04:00
committed by GitHub
parent b5f81cb84a
commit f6a3a3d0cd
195 changed files with 66733 additions and 5281 deletions

View File

@ -676,7 +676,7 @@ impl EdgeCut {
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ArtifactGraph { pub struct ArtifactGraph {
map: IndexMap<ArtifactId, Artifact>, map: IndexMap<ArtifactId, Artifact>,
item_count: usize, pub(super) item_count: usize,
} }
impl ArtifactGraph { impl ArtifactGraph {

View File

@ -1,13 +1,12 @@
use indexmap::IndexMap; use indexmap::IndexMap;
use schemars::JsonSchema;
use serde::Serialize; use serde::Serialize;
use super::{types::NumericType, ArtifactId, KclValue}; use super::{types::NumericType, ArtifactId, KclValue};
use crate::{ModuleId, SourceRange}; use crate::{ModuleId, NodePath, SourceRange};
/// A CAD modeling operation for display in the feature tree, AKA operations /// A CAD modeling operation for display in the feature tree, AKA operations
/// timeline. /// timeline.
#[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS, JsonSchema)] #[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS)]
#[ts(export_to = "Operation.ts")] #[ts(export_to = "Operation.ts")]
#[serde(tag = "type")] #[serde(tag = "type")]
pub enum Operation { pub enum Operation {
@ -18,6 +17,8 @@ pub enum Operation {
unlabeled_arg: Option<OpArg>, unlabeled_arg: Option<OpArg>,
/// The labeled keyword arguments to the function. /// The labeled keyword arguments to the function.
labeled_args: IndexMap<String, OpArg>, labeled_args: IndexMap<String, OpArg>,
/// The node path of the operation in the source code.
node_path: NodePath,
/// The source range of the operation in the source code. /// The source range of the operation in the source code.
source_range: SourceRange, source_range: SourceRange,
/// True if the operation resulted in an error. /// True if the operation resulted in an error.
@ -28,6 +29,8 @@ pub enum Operation {
GroupBegin { GroupBegin {
/// The details of the group. /// The details of the group.
group: Group, group: Group,
/// The node path of the operation in the source code.
node_path: NodePath,
/// The source range of the operation in the source code. /// The source range of the operation in the source code.
source_range: SourceRange, source_range: SourceRange,
}, },
@ -64,7 +67,7 @@ impl Operation {
} }
} }
#[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS, JsonSchema)] #[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS)]
#[ts(export_to = "Operation.ts")] #[ts(export_to = "Operation.ts")]
#[serde(tag = "type")] #[serde(tag = "type")]
#[expect(clippy::large_enum_variant)] #[expect(clippy::large_enum_variant)]
@ -95,7 +98,7 @@ pub enum Group {
} }
/// An argument to a CAD modeling operation. /// An argument to a CAD modeling operation.
#[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS, JsonSchema)] #[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS)]
#[ts(export_to = "Operation.ts")] #[ts(export_to = "Operation.ts")]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct OpArg { pub struct OpArg {
@ -119,7 +122,7 @@ fn is_false(b: &bool) -> bool {
/// A KCL value used in Operations. `ArtifactId`s are used to refer to the /// A KCL value used in Operations. `ArtifactId`s are used to refer to the
/// actual scene objects. Any data not needed in the UI may be omitted. /// actual scene objects. Any data not needed in the UI may be omitted.
#[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS, JsonSchema)] #[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS)]
#[ts(export_to = "Operation.ts")] #[ts(export_to = "Operation.ts")]
#[serde(tag = "type")] #[serde(tag = "type")]
pub enum OpKclValue { pub enum OpKclValue {
@ -177,21 +180,21 @@ pub enum OpKclValue {
pub type OpKclObjectFields = IndexMap<String, OpKclValue>; pub type OpKclObjectFields = IndexMap<String, OpKclValue>;
#[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS, JsonSchema)] #[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS)]
#[ts(export_to = "Operation.ts")] #[ts(export_to = "Operation.ts")]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct OpSketch { pub struct OpSketch {
artifact_id: ArtifactId, artifact_id: ArtifactId,
} }
#[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS, JsonSchema)] #[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS)]
#[ts(export_to = "Operation.ts")] #[ts(export_to = "Operation.ts")]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct OpSolid { pub struct OpSolid {
artifact_id: ArtifactId, artifact_id: ArtifactId,
} }
#[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS, JsonSchema)] #[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS)]
#[ts(export_to = "Operation.ts")] #[ts(export_to = "Operation.ts")]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct OpHelix { pub struct OpHelix {

View File

@ -14,7 +14,7 @@ use crate::{
parsing::ast::types::{CallExpressionKw, DefaultParamVal, FunctionExpression, Node, Program, Type}, parsing::ast::types::{CallExpressionKw, DefaultParamVal, FunctionExpression, Node, Program, Type},
source_range::SourceRange, source_range::SourceRange,
std::StdFn, std::StdFn,
CompilationError, CompilationError, NodePath,
}; };
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
@ -322,6 +322,7 @@ impl FunctionDefinition<'_> {
.unlabeled_kw_arg_unconverted() .unlabeled_kw_arg_unconverted()
.map(|arg| OpArg::new(OpKclValue::from(&arg.value), arg.source_range)), .map(|arg| OpArg::new(OpKclValue::from(&arg.value), arg.source_range)),
labeled_args: op_labeled_args, labeled_args: op_labeled_args,
node_path: NodePath::placeholder(),
source_range: callsite, source_range: callsite,
is_error: false, is_error: false,
}) })
@ -337,6 +338,7 @@ impl FunctionDefinition<'_> {
.map(|arg| OpArg::new(OpKclValue::from(&arg.1.value), arg.1.source_range)), .map(|arg| OpArg::new(OpKclValue::from(&arg.1.value), arg.1.source_range)),
labeled_args: op_labeled_args, labeled_args: op_labeled_args,
}, },
node_path: NodePath::placeholder(),
source_range: callsite, source_range: callsite,
}); });

View File

@ -7,6 +7,7 @@ use anyhow::Result;
pub use artifact::{Artifact, ArtifactCommand, ArtifactGraph, CodeRef, StartSketchOnFace, StartSketchOnPlane}; pub use artifact::{Artifact, ArtifactCommand, ArtifactGraph, CodeRef, StartSketchOnFace, StartSketchOnPlane};
use cache::GlobalState; use cache::GlobalState;
pub use cache::{bust_cache, clear_mem_cache}; pub use cache::{bust_cache, clear_mem_cache};
#[cfg(feature = "artifact-graph")]
pub use cad_op::{Group, Operation}; pub use cad_op::{Group, Operation};
pub use geometry::*; pub use geometry::*;
pub use id_generator::IdGenerator; pub use id_generator::IdGenerator;
@ -842,31 +843,14 @@ impl ExecutorContext {
let module_path = module_path.clone(); let module_path = module_path.clone();
let source_range = SourceRange::from(import_stmt); let source_range = SourceRange::from(import_stmt);
match &module_path { self.add_import_module_ops(
ModulePath::Main => { exec_state,
// This should never happen. program,
} module_id,
ModulePath::Local { value, .. } => { &module_path,
// We only want to display the top-level module imports in source_range,
// the Feature Tree, not transitive imports. &universe_map,
if universe_map.contains_key(value) { );
exec_state.push_op(Operation::GroupBegin {
group: Group::ModuleInstance {
name: value.file_name().unwrap_or_default(),
module_id,
},
source_range,
});
// Due to concurrent execution, we cannot easily
// group operations by module. So we leave the
// group empty and close it immediately.
exec_state.push_op(Operation::GroupEnd);
}
}
ModulePath::Std { .. } => {
// We don't want to display stdlib in the Feature Tree.
}
}
let repr = repr.clone(); let repr = repr.clone();
let exec_state = exec_state.clone(); let exec_state = exec_state.clone();
@ -1009,6 +993,67 @@ impl ExecutorContext {
Ok((universe, root_imports)) Ok((universe, root_imports))
} }
#[cfg(feature = "artifact-graph")]
fn add_import_module_ops(
&self,
exec_state: &mut ExecState,
program: &crate::Program,
module_id: ModuleId,
module_path: &ModulePath,
source_range: SourceRange,
universe_map: &UniverseMap,
) {
match module_path {
ModulePath::Main => {
// This should never happen.
}
ModulePath::Local { value, .. } => {
// We only want to display the top-level module imports in
// the Feature Tree, not transitive imports.
if universe_map.contains_key(value) {
use crate::NodePath;
let node_path = if source_range.is_top_level_module() {
let cached_body_items = exec_state.global.artifacts.cached_body_items();
NodePath::from_range(&program.ast, cached_body_items, source_range).unwrap_or_default()
} else {
// The frontend doesn't care about paths in
// files other than the top-level module.
NodePath::placeholder()
};
exec_state.push_op(Operation::GroupBegin {
group: Group::ModuleInstance {
name: value.file_name().unwrap_or_default(),
module_id,
},
node_path,
source_range,
});
// Due to concurrent execution, we cannot easily
// group operations by module. So we leave the
// group empty and close it immediately.
exec_state.push_op(Operation::GroupEnd);
}
}
ModulePath::Std { .. } => {
// We don't want to display stdlib in the Feature Tree.
}
}
}
#[cfg(not(feature = "artifact-graph"))]
fn add_import_module_ops(
&self,
_exec_state: &mut ExecState,
_program: &crate::Program,
_module_id: ModuleId,
_module_path: &ModulePath,
_source_range: SourceRange,
_universe_map: &UniverseMap,
) {
}
/// Perform the execution of a program. Accept all possible parameters and /// Perform the execution of a program. Accept all possible parameters and
/// output everything. /// output everything.
async fn inner_run( async fn inner_run(
@ -1059,6 +1104,11 @@ impl ExecutorContext {
// Don't early return! We need to build other outputs regardless of // Don't early return! We need to build other outputs regardless of
// whether execution failed. // whether execution failed.
// Because of execution caching, we may start with operations from a
// previous run.
#[cfg(feature = "artifact-graph")]
let start_op = exec_state.global.artifacts.operations.len();
self.eval_prelude(exec_state, SourceRange::from(program).start_as_range()) self.eval_prelude(exec_state, SourceRange::from(program).start_as_range())
.await?; .await?;
@ -1072,6 +1122,29 @@ impl ExecutorContext {
) )
.await; .await;
#[cfg(feature = "artifact-graph")]
{
// Fill in NodePath for operations.
let cached_body_items = exec_state.global.artifacts.cached_body_items();
for op in exec_state.global.artifacts.operations.iter_mut().skip(start_op) {
match op {
Operation::StdLibCall {
node_path,
source_range,
..
}
| Operation::GroupBegin {
node_path,
source_range,
..
} => {
node_path.fill_placeholder(program, cached_body_items, *source_range);
}
Operation::GroupEnd => {}
}
}
}
// Ensure all the async commands completed. // Ensure all the async commands completed.
self.engine.ensure_async_commands_completed().await?; self.engine.ensure_async_commands_completed().await?;

View File

@ -381,6 +381,13 @@ impl GlobalState {
} }
} }
#[cfg(feature = "artifact-graph")]
impl ArtifactState {
pub fn cached_body_items(&self) -> usize {
self.graph.item_count
}
}
impl ModuleState { impl ModuleState {
pub(super) fn new(path: ModulePath, memory: Arc<ProgramMemory>, module_id: Option<ModuleId>) -> Self { pub(super) fn new(path: ModulePath, memory: Arc<ProgramMemory>, module_id: Option<ModuleId>) -> Self {
ModuleState { ModuleState {

View File

@ -60,6 +60,20 @@ pub enum Step {
} }
impl NodePath { impl NodePath {
/// Placeholder for when the AST isn't available to create a real path. It
/// will be filled in later.
pub(crate) fn placeholder() -> Self {
Self::default()
}
#[cfg(feature = "artifact-graph")]
pub(crate) fn fill_placeholder(&mut self, program: &Node<Program>, cached_body_items: usize, range: SourceRange) {
if !self.is_empty() {
return;
}
*self = Self::from_range(program, cached_body_items, range).unwrap_or_default();
}
/// Given a program and a [`SourceRange`], return the path to the node that /// Given a program and a [`SourceRange`], return the path to the node that
/// contains the range. /// contains the range.
pub(crate) fn from_range(program: &Node<Program>, cached_body_items: usize, range: SourceRange) -> Option<Self> { pub(crate) fn from_range(program: &Node<Program>, cached_body_items: usize, range: SourceRange) -> Option<Self> {
@ -390,4 +404,19 @@ mod tests {
} }
); );
} }
#[test]
fn test_node_path_from_range_import() {
let code = r#"import "cube.step" as cube
import "cylinder.kcl" as cylinder
"#;
let program = crate::Program::parse_no_errs(code).unwrap();
// The entire cylinder import statement.
assert_eq!(
NodePath::from_range(&program.ast, 0, range(27, 60)).unwrap(),
NodePath {
steps: vec![Step::ProgramBodyItem { index: 1 }],
}
);
}
} }

View File

@ -94,6 +94,11 @@ impl SourceRange {
ModuleId::from_usize(self.0[2]) ModuleId::from_usize(self.0[2])
} }
/// True if this source range is from the top-level module.
pub fn is_top_level_module(&self) -> bool {
self.module_id().is_top_level()
}
/// Check if the range contains a position. /// Check if the range contains a position.
pub fn contains(&self, pos: usize) -> bool { pub fn contains(&self, pos: usize) -> bool {
pos >= self.start() && pos <= self.end() pos >= self.start() && pos <= self.end()

File diff suppressed because it is too large Load Diff

View File

@ -14,6 +14,24 @@ description: Operations executed angled_line.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed angled_line.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 8
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -44,6 +44,30 @@ description: Operations executed any_type.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -70,6 +94,20 @@ description: Operations executed any_type.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -87,6 +125,20 @@ description: Operations executed any_type.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 4
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -113,6 +165,20 @@ description: Operations executed any_type.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -130,6 +196,20 @@ description: Operations executed any_type.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -161,6 +241,20 @@ description: Operations executed any_type.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,24 @@ description: Operations executed artifact_graph_example_code1.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed artifact_graph_example_code1.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -91,6 +127,24 @@ description: Operations executed artifact_graph_example_code1.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -115,6 +169,24 @@ description: Operations executed artifact_graph_example_code1.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -147,6 +219,20 @@ description: Operations executed artifact_graph_example_code1.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed artifact_graph_example_code_no_3d.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -27,6 +45,24 @@ description: Operations executed artifact_graph_example_code_no_3d.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -31,6 +31,20 @@ description: Operations executed artifact_graph_example_code_offset_planes.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -61,6 +75,20 @@ description: Operations executed artifact_graph_example_code_offset_planes.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -91,6 +119,20 @@ description: Operations executed artifact_graph_example_code_offset_planes.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -104,6 +146,24 @@ description: Operations executed artifact_graph_example_code_offset_planes.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed artifact_graph_sketch_on_face_etc.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,20 @@ description: Operations executed artifact_graph_sketch_on_face_etc.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -70,6 +102,24 @@ description: Operations executed artifact_graph_sketch_on_face_etc.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -102,6 +152,20 @@ description: Operations executed artifact_graph_sketch_on_face_etc.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -125,6 +189,24 @@ description: Operations executed artifact_graph_sketch_on_face_etc.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 4
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -157,6 +239,20 @@ description: Operations executed artifact_graph_sketch_on_face_etc.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -181,6 +277,24 @@ description: Operations executed artifact_graph_sketch_on_face_etc.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -213,6 +327,20 @@ description: Operations executed artifact_graph_sketch_on_face_etc.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -10,6 +10,14 @@ description: Operations executed assembly_mixed_units_cubes.kcl
"name": "cube-inches.kcl", "name": "cube-inches.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -19,6 +27,14 @@ description: Operations executed assembly_mixed_units_cubes.kcl
"name": "cube-mm.kcl", "name": "cube-mm.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed assembly_non_default_units.kcl
"name": "other1.kcl", "name": "other1.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -19,6 +27,14 @@ description: Operations executed assembly_non_default_units.kcl
"name": "other2.kcl", "name": "other2.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,24 @@ description: Operations executed basic_fillet_cube_close_opposite.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed basic_fillet_cube_close_opposite.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -95,6 +131,24 @@ description: Operations executed basic_fillet_cube_close_opposite.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed basic_fillet_cube_end.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed basic_fillet_cube_end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -95,6 +131,24 @@ description: Operations executed basic_fillet_cube_end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed basic_fillet_cube_next_adjacent.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed basic_fillet_cube_next_adjacent.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -90,6 +126,24 @@ description: Operations executed basic_fillet_cube_next_adjacent.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed basic_fillet_cube_previous_adjacent.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed basic_fillet_cube_previous_adjacent.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -90,6 +126,24 @@ description: Operations executed basic_fillet_cube_previous_adjacent.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed basic_fillet_cube_start.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed basic_fillet_cube_start.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -96,6 +132,24 @@ description: Operations executed basic_fillet_cube_start.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed basic_revolve_circle.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -116,6 +134,24 @@ description: Operations executed basic_revolve_circle.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed circle_three_point.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed circle_three_point.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed circular_pattern3d_a_pattern.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed circular_pattern3d_a_pattern.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -136,6 +172,20 @@ description: Operations executed circular_pattern3d_a_pattern.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -317,6 +367,20 @@ description: Operations executed circular_pattern3d_a_pattern.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,20 @@ description: Operations executed crazy_multi_profile.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +60,20 @@ description: Operations executed crazy_multi_profile.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -70,6 +98,20 @@ description: Operations executed crazy_multi_profile.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -109,6 +151,20 @@ description: Operations executed crazy_multi_profile.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -141,6 +197,20 @@ description: Operations executed crazy_multi_profile.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -154,6 +224,20 @@ description: Operations executed crazy_multi_profile.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -186,6 +270,20 @@ description: Operations executed crazy_multi_profile.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -226,6 +324,20 @@ description: Operations executed crazy_multi_profile.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,34 @@ description: Operations executed cube.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 7
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +74,34 @@ description: Operations executed cube.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 7
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -108,6 +164,20 @@ description: Operations executed cube.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,34 @@ description: Operations executed cube_with_error.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 7
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +74,34 @@ description: Operations executed cube_with_error.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 7
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -108,6 +164,20 @@ description: Operations executed cube_with_error.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -27,57 +27,23 @@ description: Operations executed double_map_fn.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "GroupBegin", "type": "ProgramBodyItem",
"group": { "index": 2
"type": "FunctionCall",
"name": null,
"functionSourceRange": [],
"unlabeledArg": {
"value": {
"type": "Number",
"value": 1.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
}, },
"sourceRange": [] {
}, "type": "VariableDeclarationDeclaration"
"labeledArgs": {}
},
"sourceRange": []
},
{
"type": "GroupBegin",
"group": {
"type": "FunctionCall",
"name": null,
"functionSourceRange": [],
"unlabeledArg": {
"value": {
"type": "Number",
"value": 2.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
}, },
"sourceRange": [] {
}, "type": "VariableDeclarationInit"
"labeledArgs": {} },
{
"type": "PipeBodyItem",
"index": 1
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -105,6 +71,24 @@ description: Operations executed double_map_fn.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -131,6 +115,112 @@ description: Operations executed double_map_fn.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": []
},
{
"type": "GroupBegin",
"group": {
"type": "FunctionCall",
"name": null,
"functionSourceRange": [],
"unlabeledArg": {
"value": {
"type": "Number",
"value": 1.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
},
"sourceRange": []
},
"labeledArgs": {}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": []
},
{
"type": "GroupBegin",
"group": {
"type": "FunctionCall",
"name": null,
"functionSourceRange": [],
"unlabeledArg": {
"value": {
"type": "Number",
"value": 2.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
},
"sourceRange": []
},
"labeledArgs": {}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -157,6 +247,24 @@ description: Operations executed double_map_fn.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -18,6 +18,30 @@ description: Operations executed error_inside_fn_also_has_source_range_of_call_s
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -35,6 +59,17 @@ description: Operations executed error_inside_fn_also_has_source_range_of_call_s
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,24 @@ description: Operations executed error_revolve_on_edge_get_edge.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed error_revolve_on_edge_get_edge.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -70,6 +106,24 @@ description: Operations executed error_revolve_on_edge_get_edge.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -110,6 +164,24 @@ description: Operations executed error_revolve_on_edge_get_edge.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,21 @@ description: Operations executed error_with_point_shows_numeric_units.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed execute_engine_error_return.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed execute_engine_error_return.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [], "sourceRange": [],
"isError": true "isError": true
} }

View File

@ -14,6 +14,24 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -27,6 +45,24 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -59,6 +95,24 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -115,82 +169,199 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "StdLibCall", "type": "ProgramBodyItem",
"name": "startSketchOn", "index": 17
"unlabeledArg": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"labeledArgs": {},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "startSketchOn",
"unlabeledArg": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"labeledArgs": {},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "startSketchOn",
"unlabeledArg": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"labeledArgs": {},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "startSketchOn",
"unlabeledArg": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"labeledArgs": {},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "subtract2d",
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"tool": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
}, },
"sourceRange": [] {
} "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "startSketchOn",
"unlabeledArg": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "startSketchOn",
"unlabeledArg": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "startSketchOn",
"unlabeledArg": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "startSketchOn",
"unlabeledArg": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -217,6 +388,37 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -242,6 +444,37 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -267,6 +500,93 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "subtract2d",
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"tool": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -299,37 +619,36 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "StdLibCall", "type": "ProgramBodyItem",
"name": "extrude", "index": 18
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"length": {
"value": {
"type": "Number",
"value": 4.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
}, },
"sourceRange": [] {
} "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 4
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -363,6 +682,37 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 4
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -395,6 +745,100 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 4
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "extrude",
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"length": {
"value": {
"type": "Number",
"value": 4.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
},
"sourceRange": []
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 4
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -455,6 +899,17 @@ description: Operations executed fillet-and-shell.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -515,6 +970,17 @@ description: Operations executed fillet-and-shell.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 20
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -575,6 +1041,17 @@ description: Operations executed fillet-and-shell.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -635,6 +1112,17 @@ description: Operations executed fillet-and-shell.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 22
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -679,6 +1167,17 @@ description: Operations executed fillet-and-shell.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 23
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,24 @@ description: Operations executed fillet_duplicate_tags.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,21 @@ description: Operations executed fillet_duplicate_tags.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 5
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -99,6 +132,21 @@ description: Operations executed fillet_duplicate_tags.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [], "sourceRange": [],
"isError": true "isError": true
} }

View File

@ -14,6 +14,20 @@ description: Operations executed flush_batch_on_end.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -39,6 +53,24 @@ description: Operations executed flush_batch_on_end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -71,6 +103,20 @@ description: Operations executed flush_batch_on_end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,37 @@ description: Operations executed function_sketch.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +77,37 @@ description: Operations executed function_sketch.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -106,6 +168,20 @@ description: Operations executed function_sketch.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,37 @@ description: Operations executed function_sketch_with_position.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +77,37 @@ description: Operations executed function_sketch_with_position.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -140,6 +202,20 @@ description: Operations executed function_sketch_with_position.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,24 @@ description: Operations executed helix_ccw.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed helix_ccw.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -105,6 +141,24 @@ description: Operations executed helix_ccw.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed helix_simple.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -96,6 +114,20 @@ description: Operations executed helix_simple.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed i_shape.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -27,6 +45,24 @@ description: Operations executed i_shape.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -52,6 +88,24 @@ description: Operations executed i_shape.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -84,6 +138,24 @@ description: Operations executed i_shape.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

File diff suppressed because it is too large Load Diff

View File

@ -10,6 +10,14 @@ description: Operations executed import_constant.kcl
"name": "export_constant.kcl", "name": "export_constant.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed import_export.kcl
"name": "export_1.kcl", "name": "export_1.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed import_foreign.kcl
"name": "cube.gltf", "name": "cube.gltf",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed import_function_not_sketch.kcl
"name": "my_functions.kcl", "name": "my_functions.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed import_glob.kcl
"name": "export_constant.kcl", "name": "export_constant.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed import_mesh_clone.kcl
"name": "cube.obj", "name": "cube.obj",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -56,6 +64,21 @@ description: Operations executed import_mesh_clone.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -69,6 +92,24 @@ description: Operations executed import_mesh_clone.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -99,6 +140,24 @@ description: Operations executed import_mesh_clone.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -112,6 +171,24 @@ description: Operations executed import_mesh_clone.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -142,6 +219,24 @@ description: Operations executed import_mesh_clone.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -155,6 +250,24 @@ description: Operations executed import_mesh_clone.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -185,6 +298,24 @@ description: Operations executed import_mesh_clone.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,27 @@ description: Operations executed import_only_at_top_level.kcl
"name": "empty.kcl", "name": "empty.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -21,6 +42,17 @@ description: Operations executed import_only_at_top_level.kcl
"unlabeledArg": null, "unlabeledArg": null,
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed import_side_effect.kcl
"name": "export_side_effect.kcl", "name": "export_side_effect.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed import_transform.kcl
"name": "2-5-long-m8-chc-screw.stl", "name": "2-5-long-m8-chc-screw.stl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -72,6 +80,21 @@ description: Operations executed import_transform.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -134,6 +157,21 @@ description: Operations executed import_transform.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -181,6 +219,21 @@ description: Operations executed import_transform.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed import_whole_simple.kcl
"name": "exported_mod.kcl", "name": "exported_mod.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -42,6 +50,24 @@ description: Operations executed import_whole_simple.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed import_whole_transitive_import.kcl
"name": "part.kcl", "name": "part.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -42,6 +50,24 @@ description: Operations executed import_whole_transitive_import.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,34 @@ description: Operations executed intersect_cubes.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -27,6 +55,34 @@ description: Operations executed intersect_cubes.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -59,6 +115,34 @@ description: Operations executed intersect_cubes.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -91,6 +175,34 @@ description: Operations executed intersect_cubes.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -153,6 +265,20 @@ description: Operations executed intersect_cubes.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -215,6 +341,24 @@ description: Operations executed intersect_cubes.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -247,6 +391,24 @@ description: Operations executed intersect_cubes.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -273,6 +435,20 @@ description: Operations executed intersect_cubes.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,24 @@ description: Operations executed involute_circular_units.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -54,6 +72,28 @@ description: Operations executed involute_circular_units.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -79,6 +119,24 @@ description: Operations executed involute_circular_units.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 10
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -111,6 +169,24 @@ description: Operations executed involute_circular_units.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 11
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed axial-fan.kcl
"name": "fan-housing.kcl", "name": "fan-housing.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -19,6 +27,14 @@ description: Operations executed axial-fan.kcl
"name": "motor.kcl", "name": "motor.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -28,6 +44,14 @@ description: Operations executed axial-fan.kcl
"name": "fan.kcl", "name": "fan.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -44,6 +62,27 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -69,6 +108,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -101,6 +158,20 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -114,6 +185,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -200,6 +289,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -340,6 +447,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -353,6 +478,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -439,6 +582,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -579,6 +740,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -592,6 +771,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -694,6 +891,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -834,6 +1049,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -847,6 +1080,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -877,6 +1128,27 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -902,6 +1174,24 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -934,6 +1224,20 @@ description: Operations executed ball-bearing.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -41,6 +41,20 @@ description: Operations executed ball-joint-rod-end.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -54,6 +68,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -94,6 +122,28 @@ description: Operations executed ball-joint-rod-end.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 20
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -196,6 +246,24 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -209,6 +277,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 22
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -249,6 +331,28 @@ description: Operations executed ball-joint-rod-end.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 23
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -351,6 +455,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 24
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -391,6 +509,20 @@ description: Operations executed ball-joint-rod-end.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 25
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -404,6 +536,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 26
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -506,6 +652,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 28
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -519,6 +679,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 29
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -551,6 +725,24 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 31
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -615,6 +807,24 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 31
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -659,6 +869,24 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 31
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -703,6 +931,24 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 31
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -729,6 +975,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 32
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -742,6 +1002,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 33
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -774,6 +1048,24 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 35
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -838,6 +1130,24 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 35
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -873,6 +1183,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 36
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -899,6 +1223,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 37
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -929,6 +1267,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 38
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -942,6 +1294,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 39
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -974,6 +1340,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 41
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1009,6 +1389,20 @@ description: Operations executed ball-joint-rod-end.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 42
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -14,6 +14,24 @@ description: Operations executed bottle.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed bottle.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -69,6 +105,24 @@ description: Operations executed bottle.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -101,6 +155,24 @@ description: Operations executed bottle.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -145,6 +217,24 @@ description: Operations executed bottle.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 20
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 20
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -70,6 +106,24 @@ description: Operations executed bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -125,6 +179,24 @@ description: Operations executed bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 4
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -149,6 +221,24 @@ description: Operations executed bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 22
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -192,6 +282,24 @@ description: Operations executed bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 22
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -236,6 +344,17 @@ description: Operations executed bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 23
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -280,6 +399,17 @@ description: Operations executed bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 24
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -338,6 +468,17 @@ description: Operations executed bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 25
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,33 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -27,6 +54,33 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -52,6 +106,37 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -77,6 +162,37 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -112,6 +228,33 @@ description: Operations executed brake-rotor.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -147,40 +290,32 @@ description: Operations executed brake-rotor.kcl
} }
} }
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "GroupBegin", "type": "ProgramBodyItem",
"group": { "index": 21
"type": "FunctionCall",
"name": "drillHole",
"functionSourceRange": [],
"unlabeledArg": null,
"labeledArgs": {
"activeSketch": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
}, },
"t": { {
"value": { "type": "VariableDeclarationDeclaration"
"type": "Number", },
"value": 0.5, {
"ty": { "type": "VariableDeclarationInit"
"type": "Default", },
"len": { {
"type": "Mm" "type": "FunctionExpressionBody"
}, },
"angle": { {
"type": "Degrees" "type": "FunctionExpressionBodyItem",
} "index": 2
} },
}, {
"sourceRange": [] "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
} }
} ]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -217,6 +352,33 @@ description: Operations executed brake-rotor.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -237,7 +399,7 @@ description: Operations executed brake-rotor.kcl
"t": { "t": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 0.8, "value": 0.5,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -252,6 +414,33 @@ description: Operations executed brake-rotor.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -287,6 +476,95 @@ description: Operations executed brake-rotor.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 4
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": []
},
{
"type": "GroupBegin",
"group": {
"type": "FunctionCall",
"name": "drillHole",
"functionSourceRange": [],
"unlabeledArg": null,
"labeledArgs": {
"activeSketch": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"t": {
"value": {
"type": "Number",
"value": 0.8,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
},
"sourceRange": []
}
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 4
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -527,6 +805,33 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -767,6 +1072,33 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -799,6 +1131,33 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -831,6 +1190,33 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -898,6 +1284,20 @@ description: Operations executed brake-rotor.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 22
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -928,6 +1328,20 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 23
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -941,6 +1355,20 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 24
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -973,6 +1401,24 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 26
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1029,6 +1475,24 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 26
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1169,6 +1633,20 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 27
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1199,6 +1677,20 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 28
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1266,6 +1758,20 @@ description: Operations executed brake-rotor.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 29
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1279,6 +1785,20 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 36
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1365,6 +1885,24 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 37
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 10
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1389,6 +1927,20 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 38
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1450,6 +2002,20 @@ description: Operations executed brake-rotor.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 41
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed car-wheel-assembly.kcl
"name": "car-wheel.kcl", "name": "car-wheel.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -19,6 +27,14 @@ description: Operations executed car-wheel-assembly.kcl
"name": "car-rotor.kcl", "name": "car-rotor.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -28,6 +44,14 @@ description: Operations executed car-wheel-assembly.kcl
"name": "brake-caliper.kcl", "name": "brake-caliper.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -37,6 +61,14 @@ description: Operations executed car-wheel-assembly.kcl
"name": "lug-nut.kcl", "name": "lug-nut.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +78,14 @@ description: Operations executed car-wheel-assembly.kcl
"name": "car-tire.kcl", "name": "car-tire.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 4
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -139,6 +179,21 @@ description: Operations executed car-wheel-assembly.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -279,6 +334,21 @@ description: Operations executed car-wheel-assembly.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -343,6 +413,21 @@ description: Operations executed car-wheel-assembly.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -352,6 +437,9 @@ description: Operations executed car-wheel-assembly.kcl
"name": "parameters.kcl", "name": "parameters.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": []
},
"sourceRange": [] "sourceRange": []
}, },
{ {

File diff suppressed because it is too large Load Diff

View File

@ -14,6 +14,24 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -53,6 +71,24 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 18
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -66,6 +102,24 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 4
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -96,6 +150,27 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 4
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -109,6 +184,24 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -139,6 +232,27 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -164,6 +278,24 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -189,6 +321,24 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -202,6 +352,24 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -241,6 +409,24 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -331,6 +517,24 @@ description: Operations executed cold-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 8
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -31,35 +31,19 @@ description: Operations executed color-cube.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "StdLibCall", "type": "ProgramBodyItem",
"name": "offsetPlane", "index": 5
"unlabeledArg": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"labeledArgs": {
"offset": {
"value": {
"type": "Number",
"value": -50.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
}, },
"sourceRange": [] {
} "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -91,6 +75,20 @@ description: Operations executed color-cube.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -121,6 +119,64 @@ description: Operations executed color-cube.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "offsetPlane",
"unlabeledArg": {
"value": {
"type": "Plane",
"artifact_id": "[uuid]"
},
"sourceRange": []
},
"labeledArgs": {
"offset": {
"value": {
"type": "Number",
"value": -50.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
},
"sourceRange": []
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -151,6 +207,20 @@ description: Operations executed color-cube.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -181,37 +251,19 @@ description: Operations executed color-cube.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "StdLibCall", "type": "ProgramBodyItem",
"name": "extrude", "index": 10
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"length": {
"value": {
"type": "Number",
"value": 1.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
}, },
"sourceRange": [] {
} "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -245,37 +297,33 @@ description: Operations executed color-cube.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "StdLibCall", "type": "ProgramBodyItem",
"name": "extrude", "index": 11
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"length": {
"value": {
"type": "Number",
"value": 1.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
}, },
"sourceRange": [] {
} "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -309,6 +357,34 @@ description: Operations executed color-cube.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -341,6 +417,34 @@ description: Operations executed color-cube.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -373,6 +477,154 @@ description: Operations executed color-cube.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "extrude",
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"length": {
"value": {
"type": "Number",
"value": 1.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
},
"sourceRange": []
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "extrude",
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"length": {
"value": {
"type": "Number",
"value": 1.0,
"ty": {
"type": "Default",
"len": {
"type": "Mm"
},
"angle": {
"type": "Degrees"
}
}
},
"sourceRange": []
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ReturnStatementArg"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -399,6 +651,17 @@ description: Operations executed color-cube.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -425,6 +688,17 @@ description: Operations executed color-cube.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -451,6 +725,17 @@ description: Operations executed color-cube.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -477,6 +762,17 @@ description: Operations executed color-cube.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -503,6 +799,17 @@ description: Operations executed color-cube.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -529,6 +836,17 @@ description: Operations executed color-cube.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

File diff suppressed because it is too large Load Diff

View File

@ -14,6 +14,24 @@ description: Operations executed countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -54,6 +72,28 @@ description: Operations executed countersunk-plate.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -79,6 +119,24 @@ description: Operations executed countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 11
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -111,6 +169,24 @@ description: Operations executed countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 12
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -134,6 +210,34 @@ description: Operations executed countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -157,6 +261,34 @@ description: Operations executed countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -189,6 +321,34 @@ description: Operations executed countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -221,6 +381,34 @@ description: Operations executed countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -266,6 +454,34 @@ description: Operations executed countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -311,6 +527,34 @@ description: Operations executed countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -337,6 +581,17 @@ description: Operations executed countersunk-plate.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -363,6 +618,17 @@ description: Operations executed countersunk-plate.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -10,6 +10,14 @@ description: Operations executed cpu-cooler.kcl
"name": "parameters.kcl", "name": "parameters.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -19,6 +27,14 @@ description: Operations executed cpu-cooler.kcl
"name": "fan-housing.kcl", "name": "fan-housing.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -28,6 +44,14 @@ description: Operations executed cpu-cooler.kcl
"name": "motor.kcl", "name": "motor.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -37,6 +61,14 @@ description: Operations executed cpu-cooler.kcl
"name": "fan.kcl", "name": "fan.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +78,14 @@ description: Operations executed cpu-cooler.kcl
"name": "heat-sink.kcl", "name": "heat-sink.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 4
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -55,6 +95,14 @@ description: Operations executed cpu-cooler.kcl
"name": "mounting-wire.kcl", "name": "mounting-wire.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -64,6 +112,14 @@ description: Operations executed cpu-cooler.kcl
"name": "removable-sticker.kcl", "name": "removable-sticker.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -112,6 +168,34 @@ description: Operations executed cpu-cooler.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -171,6 +255,34 @@ description: Operations executed cpu-cooler.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -278,6 +390,34 @@ description: Operations executed cpu-cooler.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -368,6 +508,34 @@ description: Operations executed cpu-cooler.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -469,6 +637,34 @@ description: Operations executed cpu-cooler.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -618,6 +814,34 @@ description: Operations executed cpu-cooler.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -639,6 +863,17 @@ description: Operations executed cpu-cooler.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -671,6 +906,17 @@ description: Operations executed cpu-cooler.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -751,6 +997,17 @@ description: Operations executed cpu-cooler.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -914,6 +1171,21 @@ description: Operations executed cpu-cooler.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1101,6 +1373,21 @@ description: Operations executed cpu-cooler.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -44,6 +71,36 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -76,6 +133,37 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -120,6 +208,37 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -164,6 +283,37 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -177,6 +327,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -212,6 +389,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -244,6 +448,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -267,6 +498,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -299,6 +557,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -312,6 +597,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -342,6 +654,36 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -374,6 +716,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -397,6 +766,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 4
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -432,6 +828,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -464,6 +887,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -508,6 +958,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -534,6 +1011,33 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -610,6 +1114,20 @@ description: Operations executed curtain-wall-anchor-plate.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -623,6 +1141,20 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -687,6 +1219,24 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -719,6 +1269,20 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -734,6 +1298,24 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -798,6 +1380,24 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -833,6 +1433,20 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -868,6 +1482,20 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -928,6 +1556,24 @@ description: Operations executed curtain-wall-anchor-plate.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -992,6 +1638,24 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1056,6 +1720,24 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1146,6 +1828,24 @@ description: Operations executed curtain-wall-anchor-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,50 @@ description: Operations executed cycloidal-gear.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -27,6 +71,50 @@ description: Operations executed cycloidal-gear.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -40,6 +128,50 @@ description: Operations executed cycloidal-gear.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -70,6 +202,53 @@ description: Operations executed cycloidal-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -100,6 +279,53 @@ description: Operations executed cycloidal-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -130,30 +356,52 @@ description: Operations executed cycloidal-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "StdLibCall", "type": "ProgramBodyItem",
"name": "subtract2d", "index": 0
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"tool": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
}, },
"sourceRange": [] {
} "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -180,6 +428,50 @@ description: Operations executed cycloidal-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -205,6 +497,119 @@ description: Operations executed cycloidal-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "subtract2d",
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"tool": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -237,6 +642,33 @@ description: Operations executed cycloidal-gear.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -263,6 +695,40 @@ description: Operations executed cycloidal-gear.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
},
{
"type": "ArrayElement",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -289,6 +755,40 @@ description: Operations executed cycloidal-gear.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
},
{
"type": "ArrayElement",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -315,6 +815,40 @@ description: Operations executed cycloidal-gear.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
},
{
"type": "ArrayElement",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -387,6 +921,17 @@ description: Operations executed cycloidal-gear.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -14,6 +14,20 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -116,6 +130,20 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -129,6 +157,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -159,6 +205,27 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -191,6 +258,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -214,6 +299,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -246,6 +349,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -269,6 +390,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -301,6 +440,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -324,6 +481,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -356,6 +531,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -379,6 +572,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -411,6 +622,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -434,6 +663,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -466,6 +713,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -489,6 +754,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -521,6 +804,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -544,6 +845,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -583,6 +902,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -627,6 +964,24 @@ description: Operations executed engine-valve.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

File diff suppressed because it is too large Load Diff

View File

@ -14,6 +14,24 @@ description: Operations executed flange.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -27,6 +45,24 @@ description: Operations executed flange.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -75,6 +111,24 @@ description: Operations executed flange.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -107,6 +161,24 @@ description: Operations executed flange.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -130,6 +202,24 @@ description: Operations executed flange.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -162,6 +252,24 @@ description: Operations executed flange.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -185,6 +293,24 @@ description: Operations executed flange.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -217,6 +343,24 @@ description: Operations executed flange.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -240,6 +384,24 @@ description: Operations executed flange.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -272,6 +434,24 @@ description: Operations executed flange.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,37 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -74,6 +105,20 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -106,6 +151,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -162,6 +225,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -175,6 +256,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -200,6 +299,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -232,6 +349,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -280,6 +415,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 8
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -370,6 +523,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -383,6 +554,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -408,6 +597,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -440,6 +647,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -488,6 +713,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 8
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -578,6 +821,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -591,6 +852,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -623,6 +902,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 5
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -636,6 +933,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -668,6 +983,24 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -23,6 +23,56 @@ description: Operations executed food-service-spatula.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "IfExpressionElse"
},
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "IfExpressionThen"
},
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "BinaryLeft"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -45,6 +95,56 @@ description: Operations executed food-service-spatula.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "IfExpressionElse"
},
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "IfExpressionThen"
},
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "BinaryLeft"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -67,6 +167,56 @@ description: Operations executed food-service-spatula.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "IfExpressionElse"
},
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "IfExpressionThen"
},
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "BinaryLeft"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -80,6 +230,20 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -183,6 +347,20 @@ description: Operations executed food-service-spatula.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -286,6 +464,20 @@ description: Operations executed food-service-spatula.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -389,30 +581,19 @@ description: Operations executed food-service-spatula.kcl
} }
} }
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "StdLibCall", "type": "ProgramBodyItem",
"name": "subtract2d", "index": 15
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"tool": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
}, },
"sourceRange": [] {
} "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -439,6 +620,24 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -464,6 +663,67 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "subtract2d",
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"tool": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -496,6 +756,20 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -544,6 +818,17 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -557,6 +842,20 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -587,6 +886,23 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -619,6 +935,20 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -667,6 +997,17 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 22
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -680,6 +1021,20 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 24
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -712,6 +1067,20 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 26
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -736,6 +1105,20 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 27
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -839,6 +1222,20 @@ description: Operations executed food-service-spatula.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 28
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -871,6 +1268,17 @@ description: Operations executed food-service-spatula.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 29
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -116,6 +134,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -129,6 +165,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -161,6 +215,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 19
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -301,6 +373,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 20
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -314,6 +404,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -344,6 +452,27 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -376,6 +505,20 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -399,6 +542,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -448,6 +609,20 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -461,6 +636,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -547,6 +740,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -560,6 +771,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -646,6 +875,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 10
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -659,6 +906,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -689,6 +954,27 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -714,6 +1000,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -746,6 +1050,20 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -769,6 +1087,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -848,6 +1184,20 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -871,6 +1221,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -926,6 +1294,20 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -939,6 +1321,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -971,6 +1371,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1015,6 +1433,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 19
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1028,6 +1464,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 20
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1114,6 +1568,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 20
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 10
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1127,6 +1599,24 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1157,6 +1647,27 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1189,6 +1700,20 @@ description: Operations executed french-press.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 22
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,24 @@ description: Operations executed gear-rack.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed gear-rack.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -59,6 +95,37 @@ description: Operations executed gear-rack.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -91,6 +158,37 @@ description: Operations executed gear-rack.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 10
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -102,6 +200,24 @@ description: Operations executed gear-rack.kcl
"unlabeledArg": null, "unlabeledArg": null,
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -192,6 +308,24 @@ description: Operations executed gear-rack.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -205,6 +339,24 @@ description: Operations executed gear-rack.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -237,6 +389,24 @@ description: Operations executed gear-rack.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -250,6 +420,24 @@ description: Operations executed gear-rack.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -282,6 +470,24 @@ description: Operations executed gear-rack.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,37 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -27,6 +58,37 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -59,6 +121,20 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -76,6 +152,23 @@ description: Operations executed gridfinity-baseplate.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -106,6 +199,26 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -246,6 +359,20 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -348,6 +475,20 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -365,6 +506,23 @@ description: Operations executed gridfinity-baseplate.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -395,6 +553,26 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -535,6 +713,20 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -648,6 +840,24 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -785,6 +995,24 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -898,6 +1126,24 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1035,6 +1281,24 @@ description: Operations executed gridfinity-baseplate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,37 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -27,6 +58,37 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -59,6 +121,20 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -76,6 +152,23 @@ description: Operations executed gridfinity-bins.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -106,6 +199,26 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -246,6 +359,20 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -348,6 +475,20 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 20
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -365,6 +506,23 @@ description: Operations executed gridfinity-bins.kcl
}, },
"labeledArgs": {} "labeledArgs": {}
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 20
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -395,6 +553,26 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 20
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -535,6 +713,20 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 21
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -548,6 +740,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 22
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -580,6 +790,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 22
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -636,6 +864,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 22
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -659,6 +905,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 23
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -714,6 +978,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 23
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -827,6 +1109,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 24
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -964,6 +1264,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 24
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1077,6 +1395,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 25
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1214,6 +1550,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 25
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1304,6 +1658,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 26
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1405,6 +1777,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 26
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1418,6 +1808,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 27
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1448,6 +1856,27 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 27
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1480,6 +1909,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 27
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1536,6 +1983,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 27
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1580,6 +2045,24 @@ description: Operations executed gridfinity-bins.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 27
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 8
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -53,6 +71,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 18
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -66,6 +102,20 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -96,37 +146,22 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "StdLibCall", "type": "ProgramBodyItem",
"name": "extrude", "index": 1
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"length": {
"value": {
"type": "Number",
"value": -14.0,
"ty": {
"type": "Default",
"len": {
"type": "Inches"
},
"angle": {
"type": "Degrees"
}
}
}, },
"sourceRange": [] {
} "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwUnlabeledArg"
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -160,6 +195,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -192,6 +245,74 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "extrude",
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"length": {
"value": {
"type": "Number",
"value": -14.0,
"ty": {
"type": "Default",
"len": {
"type": "Inches"
},
"angle": {
"type": "Degrees"
}
}
},
"sourceRange": []
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 4
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -227,6 +348,20 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -253,6 +388,28 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwArg",
"index": 0
},
{
"type": "ArrayElement",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -279,6 +436,35 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "CallKwArg",
"index": 0
},
{
"type": "ArrayElement",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
},
{
"type": "ArrayElement",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -292,6 +478,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -324,6 +528,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -337,6 +559,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -367,6 +607,27 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -406,6 +667,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -450,6 +729,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -476,6 +773,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -506,6 +821,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -519,6 +852,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -621,6 +972,24 @@ description: Operations executed hammer.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

File diff suppressed because it is too large Load Diff

View File

@ -14,6 +14,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -116,6 +134,20 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -129,6 +161,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -155,6 +205,27 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -194,6 +265,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -238,6 +327,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -251,6 +358,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -276,6 +401,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -308,6 +451,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -334,6 +495,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 10
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -347,6 +526,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -373,6 +570,27 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 11
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -386,6 +604,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -412,6 +648,27 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -437,6 +694,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 10
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -476,6 +751,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 12
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 11
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -489,6 +782,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -515,6 +826,27 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -540,6 +872,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -579,6 +929,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 13
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -614,6 +982,20 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 14
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -627,6 +1009,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -657,6 +1057,27 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -689,6 +1110,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -719,6 +1158,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -745,6 +1202,28 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -835,6 +1314,31 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwArg",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -848,6 +1352,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -874,6 +1396,27 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -899,6 +1442,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -938,6 +1499,24 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -1035,6 +1614,21 @@ description: Operations executed helium-tank.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "ExpressionStatementExpr"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -14,6 +14,50 @@ description: Operations executed herringbone-gear.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -27,6 +71,50 @@ description: Operations executed herringbone-gear.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -57,6 +145,53 @@ description: Operations executed herringbone-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -87,6 +222,53 @@ description: Operations executed herringbone-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
},
{
"type": "CallKwUnlabeledArg"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -127,6 +309,54 @@ description: Operations executed herringbone-gear.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -167,6 +397,54 @@ description: Operations executed herringbone-gear.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -207,6 +485,54 @@ description: Operations executed herringbone-gear.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -247,6 +573,54 @@ description: Operations executed herringbone-gear.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -287,6 +661,54 @@ description: Operations executed herringbone-gear.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 5
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -327,6 +749,54 @@ description: Operations executed herringbone-gear.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 5
},
{
"type": "CallKwArg",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -352,6 +822,50 @@ description: Operations executed herringbone-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 8
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -377,6 +891,50 @@ description: Operations executed herringbone-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 5
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 1
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 8
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -405,6 +963,33 @@ description: Operations executed herringbone-gear.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -433,6 +1018,33 @@ description: Operations executed herringbone-gear.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 7
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -448,6 +1060,37 @@ description: Operations executed herringbone-gear.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -480,6 +1123,37 @@ description: Operations executed herringbone-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 8
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -524,6 +1198,33 @@ description: Operations executed herringbone-gear.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -616,6 +1317,17 @@ description: Operations executed herringbone-gear.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,37 @@ description: Operations executed hex-nut.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -39,6 +70,37 @@ description: Operations executed hex-nut.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 8
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -71,6 +133,37 @@ description: Operations executed hex-nut.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "FunctionExpressionBody"
},
{
"type": "FunctionExpressionBodyItem",
"index": 0
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -149,6 +242,17 @@ description: Operations executed hex-nut.kcl
} }
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 4
},
{
"type": "ExpressionStatementExpr"
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

View File

@ -14,6 +14,24 @@ description: Operations executed i-beam.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -42,6 +60,24 @@ description: Operations executed i-beam.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 6
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 9
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -14,6 +14,24 @@ description: Operations executed lego.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -46,6 +64,24 @@ description: Operations executed lego.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 15
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -69,6 +105,24 @@ description: Operations executed lego.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -101,6 +155,24 @@ description: Operations executed lego.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 16
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -124,6 +196,24 @@ description: Operations executed lego.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -191,6 +281,24 @@ description: Operations executed lego.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 17
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 4
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -214,6 +322,24 @@ description: Operations executed lego.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -257,6 +383,24 @@ description: Operations executed lego.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 18
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 4
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

File diff suppressed because it is too large Load Diff

View File

@ -14,30 +14,19 @@ description: Operations executed mounting-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"labeledArgs": {}, "labeledArgs": {},
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "StdLibCall", "type": "ProgramBodyItem",
"name": "subtract2d", "index": 7
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"tool": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
}, },
"sourceRange": [] {
} "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -64,30 +53,23 @@ description: Operations executed mounting-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"sourceRange": [] "nodePath": {
}, "steps": [
{ {
"type": "StdLibCall", "type": "ProgramBodyItem",
"name": "subtract2d", "index": 9
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"tool": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
}, },
"sourceRange": [] {
} "type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 1
}
]
}, },
"sourceRange": [] "sourceRange": []
}, },
@ -114,6 +96,24 @@ description: Operations executed mounting-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -139,6 +139,110 @@ description: Operations executed mounting-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 3
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "subtract2d",
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"tool": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 4
}
]
},
"sourceRange": []
},
{
"type": "StdLibCall",
"name": "subtract2d",
"unlabeledArg": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
},
"labeledArgs": {
"tool": {
"value": {
"type": "Sketch",
"value": {
"artifactId": "[uuid]"
}
},
"sourceRange": []
}
},
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 5
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -171,6 +275,24 @@ description: Operations executed mounting-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 6
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -227,6 +349,24 @@ description: Operations executed mounting-plate.kcl
"sourceRange": [] "sourceRange": []
} }
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 9
},
{
"type": "VariableDeclarationDeclaration"
},
{
"type": "VariableDeclarationInit"
},
{
"type": "PipeBodyItem",
"index": 7
}
]
},
"sourceRange": [] "sourceRange": []
} }
] ]

View File

@ -10,6 +10,14 @@ description: Operations executed multi-axis-robot.kcl
"name": "robot-arm-base.kcl", "name": "robot-arm-base.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -19,6 +27,14 @@ description: Operations executed multi-axis-robot.kcl
"name": "robot-rotating-base.kcl", "name": "robot-rotating-base.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -28,6 +44,14 @@ description: Operations executed multi-axis-robot.kcl
"name": "robot-arm-j2.kcl", "name": "robot-arm-j2.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -37,6 +61,14 @@ description: Operations executed multi-axis-robot.kcl
"name": "robot-arm-j3.kcl", "name": "robot-arm-j3.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 3
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

File diff suppressed because it is too large Load Diff

View File

@ -10,6 +10,14 @@ description: Operations executed pillow-block-bearing.kcl
"name": "parameters.kcl", "name": "parameters.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 0
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -19,6 +27,14 @@ description: Operations executed pillow-block-bearing.kcl
"name": "ball-bearing.kcl", "name": "ball-bearing.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 1
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {
@ -28,6 +44,14 @@ description: Operations executed pillow-block-bearing.kcl
"name": "block.kcl", "name": "block.kcl",
"moduleId": 0 "moduleId": 0
}, },
"nodePath": {
"steps": [
{
"type": "ProgramBodyItem",
"index": 2
}
]
},
"sourceRange": [] "sourceRange": []
}, },
{ {

Some files were not shown because too many files have changed in this diff Show More