From 38aeaee71379876f1fd8644660b90301c89cda1e Mon Sep 17 00:00:00 2001 From: Nick Cameron Date: Mon, 27 Jan 2025 10:55:09 +1300 Subject: [PATCH] skip serializing types of parameters Signed-off-by: Nick Cameron --- docs/kcl/e.md | 4 +- docs/kcl/pi.md | 4 +- docs/kcl/tau.md | 4 +- src/wasm-lib/kcl/src/parsing/ast/types/mod.rs | 3 +- ...w_function_decl_with_default_and_type.snap | 5 --- .../kcl/tests/add_lots/program_memory.snap | 10 ----- .../kcl/tests/angled_line/program_memory.snap | 5 --- .../tests/array_elem_pop/program_memory.snap | 5 --- .../tests/array_elem_push/program_memory.snap | 5 --- .../array_range_expr/program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../basic_fillet_cube_end/program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../boolean_logical_and/program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../boolean_logical_or/program_memory.snap | 5 --- .../circle_three_point/program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../kcl/tests/comparisons/program_memory.snap | 5 --- .../tests/computed_var/program_memory.snap | 5 --- .../kcl/tests/cube/program_memory.snap | 10 ----- .../tests/double_map_fn/program_memory.snap | 10 ----- .../fillet-and-shell/program_memory.snap | 10 ----- .../tests/function_sketch/program_memory.snap | 10 ----- .../program_memory.snap | 10 ----- .../kcl/tests/helix_ccw/program_memory.snap | 5 --- .../kcl/tests/i_shape/program_memory.snap | 5 --- .../kcl/tests/if_else/program_memory.snap | 5 --- .../tests/import_constant/program_memory.snap | 5 --- .../tests/import_export/program_memory.snap | 5 --- .../tests/import_foreign/program_memory.snap | 5 --- .../kcl/tests/import_glob/program_memory.snap | 10 ----- .../tests/import_whole/program_memory.snap | 5 --- .../tests/index_of_array/program_memory.snap | 5 --- .../tests/kittycad_svg/program_memory.snap | 5 --- .../kcl/tests/kw_fn/program_memory.snap | 20 ---------- .../kw_fn_with_defaults/program_memory.snap | 10 ----- .../program_memory.snap | 5 --- .../mike_stress_test/program_memory.snap | 5 --- .../tests/neg_xz_plane/program_memory.snap | 5 --- .../kcl/tests/parametric/program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../pentagon_fillet_sugar/program_memory.snap | 10 ----- .../kcl/tests/pipe_as_arg/program_memory.snap | 40 ------------------- .../kcl/tests/poop_chute/program_memory.snap | 5 --- .../property_of_object/program_memory.snap | 5 --- .../tests/riddle_small/program_memory.snap | 10 ----- .../program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../sketch_in_object/program_memory.snap | 20 ---------- .../tests/sketch_on_face/program_memory.snap | 5 --- .../program_memory.snap | 5 --- .../program_memory.snap | 10 ----- .../sketch_on_face_end/program_memory.snap | 10 ----- .../program_memory.snap | 10 ----- .../sketch_on_face_start/program_memory.snap | 10 ----- .../tests/tan_arc_x_line/program_memory.snap | 5 --- .../tests/tangential_arc/program_memory.snap | 5 --- .../kcl/tests/xz_plane/program_memory.snap | 5 --- 68 files changed, 10 insertions(+), 460 deletions(-) diff --git a/docs/kcl/e.md b/docs/kcl/e.md index 75333bdaf4..3e4dfb7db5 100644 --- a/docs/kcl/e.md +++ b/docs/kcl/e.md @@ -4,9 +4,11 @@ excerpt: "Return the value of Euler’s number `e`." layout: manual --- -Return the value of Euler’s number `e`. +**WARNING:** This function is deprecated. +Return the value of Euler’s number `e`. +**DEPRECATED** use the constant E ```js e() -> number diff --git a/docs/kcl/pi.md b/docs/kcl/pi.md index 61edb807b9..0b1369fd02 100644 --- a/docs/kcl/pi.md +++ b/docs/kcl/pi.md @@ -4,9 +4,11 @@ excerpt: "Return the value of `pi`. Archimedes’ constant (π)." layout: manual --- -Return the value of `pi`. Archimedes’ constant (π). +**WARNING:** This function is deprecated. +Return the value of `pi`. Archimedes’ constant (π). +**DEPRECATED** use the constant PI ```js pi() -> number diff --git a/docs/kcl/tau.md b/docs/kcl/tau.md index eaf7ea9abd..4aef4f51f3 100644 --- a/docs/kcl/tau.md +++ b/docs/kcl/tau.md @@ -4,9 +4,11 @@ excerpt: "Return the value of `tau`. The full circle constant (τ). Equal to 2π layout: manual --- -Return the value of `tau`. The full circle constant (τ). Equal to 2π. +**WARNING:** This function is deprecated. +Return the value of `tau`. The full circle constant (τ). Equal to 2π. +**DEPRECATED** use the constant TAU ```js tau() -> number diff --git a/src/wasm-lib/kcl/src/parsing/ast/types/mod.rs b/src/wasm-lib/kcl/src/parsing/ast/types/mod.rs index 04526325c3..4616dd02bd 100644 --- a/src/wasm-lib/kcl/src/parsing/ast/types/mod.rs +++ b/src/wasm-lib/kcl/src/parsing/ast/types/mod.rs @@ -2983,8 +2983,7 @@ pub struct Parameter { pub identifier: Node, /// The type of the parameter. /// This is optional if the user defines a type. - #[serde(default, skip_serializing_if = "Option::is_none")] - #[ts(skip)] + #[serde(skip)] pub type_: Option, /// Is the parameter optional? /// If so, what is its default value? diff --git a/src/wasm-lib/kcl/src/parsing/snapshots/kcl_lib__parsing__parser__snapshot_tests__kw_function_decl_with_default_and_type.snap b/src/wasm-lib/kcl/src/parsing/snapshots/kcl_lib__parsing__parser__snapshot_tests__kw_function_decl_with_default_and_type.snap index 034dbc310d..e3cef2a140 100644 --- a/src/wasm-lib/kcl/src/parsing/snapshots/kcl_lib__parsing__parser__snapshot_tests__kw_function_decl_with_default_and_type.snap +++ b/src/wasm-lib/kcl/src/parsing/snapshots/kcl_lib__parsing__parser__snapshot_tests__kw_function_decl_with_default_and_type.snap @@ -47,11 +47,6 @@ expression: actual "start": 7, "type": "Identifier" }, - "type_": { - "None": null, - "type": "Primitive", - "type": "Number" - }, "default_value": { "type": "Literal", "type": "Literal", diff --git a/src/wasm-lib/kcl/tests/add_lots/program_memory.snap b/src/wasm-lib/kcl/tests/add_lots/program_memory.snap index d43157cecb..abf28aa5b9 100644 --- a/src/wasm-lib/kcl/tests/add_lots/program_memory.snap +++ b/src/wasm-lib/kcl/tests/add_lots/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing add_lots.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -309,11 +304,6 @@ description: Program memory after executing add_lots.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/angled_line/program_memory.snap b/src/wasm-lib/kcl/tests/angled_line/program_memory.snap index e56adccb06..5b26390fa9 100644 --- a/src/wasm-lib/kcl/tests/angled_line/program_memory.snap +++ b/src/wasm-lib/kcl/tests/angled_line/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing angled_line.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/array_elem_pop/program_memory.snap b/src/wasm-lib/kcl/tests/array_elem_pop/program_memory.snap index 8024546566..cdca5fd762 100644 --- a/src/wasm-lib/kcl/tests/array_elem_pop/program_memory.snap +++ b/src/wasm-lib/kcl/tests/array_elem_pop/program_memory.snap @@ -170,11 +170,6 @@ description: Program memory after executing array_elem_pop.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/array_elem_push/program_memory.snap b/src/wasm-lib/kcl/tests/array_elem_push/program_memory.snap index a8a0f8e45c..a2feb638ba 100644 --- a/src/wasm-lib/kcl/tests/array_elem_push/program_memory.snap +++ b/src/wasm-lib/kcl/tests/array_elem_push/program_memory.snap @@ -170,11 +170,6 @@ description: Program memory after executing array_elem_push.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/array_range_expr/program_memory.snap b/src/wasm-lib/kcl/tests/array_range_expr/program_memory.snap index f379661042..5046cdf042 100644 --- a/src/wasm-lib/kcl/tests/array_range_expr/program_memory.snap +++ b/src/wasm-lib/kcl/tests/array_range_expr/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing array_range_expr.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/array_range_negative_expr/program_memory.snap b/src/wasm-lib/kcl/tests/array_range_negative_expr/program_memory.snap index 7bcb782896..0e083bfca7 100644 --- a/src/wasm-lib/kcl/tests/array_range_negative_expr/program_memory.snap +++ b/src/wasm-lib/kcl/tests/array_range_negative_expr/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing array_range_negative_expr.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap index 83fe7b20cb..3148eaf679 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing artifact_graph_example_code1.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap index 2bb18f46a6..f3cedd3cc6 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing artifact_graph_example_code_no_3d.kc "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap index 08b2b71a38..01cd730c6a 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing artifact_graph_example_code_offset_p "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap index 7ad1e4645f..755bf22279 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing artifact_graph_sketch_on_face_etc.kc "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap index 935e4a90d8..1512ae648b 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing basic_fillet_cube_close_opposite.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap index e2b6336d9c..c257b2b7c4 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing basic_fillet_cube_end.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap index e37cbbd826..cd7511527b 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing basic_fillet_cube_next_adjacent.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap index 950e13c177..e3420d26a3 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing basic_fillet_cube_previous_adjacent. "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap index 6729d4b35c..170251644c 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing basic_fillet_cube_start.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap index 9ce0a75cc3..3272d9ea90 100644 --- a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing big_number_angle_to_match_length_x.k "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap index f7cd524c43..c81af930a3 100644 --- a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing big_number_angle_to_match_length_y.k "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/boolean_logical_and/program_memory.snap b/src/wasm-lib/kcl/tests/boolean_logical_and/program_memory.snap index f9601b00fa..43accb0dcd 100644 --- a/src/wasm-lib/kcl/tests/boolean_logical_and/program_memory.snap +++ b/src/wasm-lib/kcl/tests/boolean_logical_and/program_memory.snap @@ -216,11 +216,6 @@ description: Program memory after executing boolean_logical_and.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/boolean_logical_multiple/program_memory.snap b/src/wasm-lib/kcl/tests/boolean_logical_multiple/program_memory.snap index 1ae50527fa..12662796e3 100644 --- a/src/wasm-lib/kcl/tests/boolean_logical_multiple/program_memory.snap +++ b/src/wasm-lib/kcl/tests/boolean_logical_multiple/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing boolean_logical_multiple.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/boolean_logical_or/program_memory.snap b/src/wasm-lib/kcl/tests/boolean_logical_or/program_memory.snap index d7609938a1..525c5c3e85 100644 --- a/src/wasm-lib/kcl/tests/boolean_logical_or/program_memory.snap +++ b/src/wasm-lib/kcl/tests/boolean_logical_or/program_memory.snap @@ -216,11 +216,6 @@ description: Program memory after executing boolean_logical_or.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap b/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap index a20abe13cc..cd8871db5f 100644 --- a/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap +++ b/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing circle_three_point.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap index e019a14119..d4a9ab929e 100644 --- a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap +++ b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/comparisons/program_memory.snap b/src/wasm-lib/kcl/tests/comparisons/program_memory.snap index 5cf3b10381..3257b9a21b 100644 --- a/src/wasm-lib/kcl/tests/comparisons/program_memory.snap +++ b/src/wasm-lib/kcl/tests/comparisons/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing comparisons.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/computed_var/program_memory.snap b/src/wasm-lib/kcl/tests/computed_var/program_memory.snap index ac640072db..0ca08f84b6 100644 --- a/src/wasm-lib/kcl/tests/computed_var/program_memory.snap +++ b/src/wasm-lib/kcl/tests/computed_var/program_memory.snap @@ -183,11 +183,6 @@ description: Program memory after executing computed_var.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/cube/program_memory.snap b/src/wasm-lib/kcl/tests/cube/program_memory.snap index bd106d80c7..816c857f86 100644 --- a/src/wasm-lib/kcl/tests/cube/program_memory.snap +++ b/src/wasm-lib/kcl/tests/cube/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing cube.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -921,11 +916,6 @@ description: Program memory after executing cube.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/double_map_fn/program_memory.snap b/src/wasm-lib/kcl/tests/double_map_fn/program_memory.snap index 2c1d328336..824c41ce25 100644 --- a/src/wasm-lib/kcl/tests/double_map_fn/program_memory.snap +++ b/src/wasm-lib/kcl/tests/double_map_fn/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing double_map_fn.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -309,11 +304,6 @@ description: Program memory after executing double_map_fn.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap b/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap index 1cd9d2aafe..3169f2b26c 100644 --- a/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap +++ b/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap @@ -745,11 +745,6 @@ description: Program memory after executing fillet-and-shell.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -2136,11 +2131,6 @@ description: Program memory after executing fillet-and-shell.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap b/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap index a5ce353a67..b94057bcf4 100644 --- a/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap +++ b/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap @@ -572,11 +572,6 @@ description: Program memory after executing function_sketch.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -631,11 +626,6 @@ description: Program memory after executing function_sketch.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap b/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap index 1f75c47fff..9e19e2641f 100644 --- a/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap +++ b/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap @@ -558,11 +558,6 @@ description: Program memory after executing function_sketch_with_position.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -617,11 +612,6 @@ description: Program memory after executing function_sketch_with_position.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap b/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap index 3ace90bec4..190ba5cc63 100644 --- a/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap +++ b/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing helix_ccw.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/i_shape/program_memory.snap b/src/wasm-lib/kcl/tests/i_shape/program_memory.snap index 1533e7db78..28b39479c1 100644 --- a/src/wasm-lib/kcl/tests/i_shape/program_memory.snap +++ b/src/wasm-lib/kcl/tests/i_shape/program_memory.snap @@ -759,11 +759,6 @@ description: Program memory after executing i_shape.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/if_else/program_memory.snap b/src/wasm-lib/kcl/tests/if_else/program_memory.snap index dd8729395c..406cbf8ed7 100644 --- a/src/wasm-lib/kcl/tests/if_else/program_memory.snap +++ b/src/wasm-lib/kcl/tests/if_else/program_memory.snap @@ -156,11 +156,6 @@ description: Program memory after executing if_else.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/import_constant/program_memory.snap b/src/wasm-lib/kcl/tests/import_constant/program_memory.snap index a89c802936..6f79b923dd 100644 --- a/src/wasm-lib/kcl/tests/import_constant/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_constant/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing import_constant.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/import_export/program_memory.snap b/src/wasm-lib/kcl/tests/import_export/program_memory.snap index aa5e68a041..1547a75b1f 100644 --- a/src/wasm-lib/kcl/tests/import_export/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_export/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing import_export.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/import_foreign/program_memory.snap b/src/wasm-lib/kcl/tests/import_foreign/program_memory.snap index e520d618a5..19fcdb6fd8 100644 --- a/src/wasm-lib/kcl/tests/import_foreign/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_foreign/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing import_foreign.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/import_glob/program_memory.snap b/src/wasm-lib/kcl/tests/import_glob/program_memory.snap index e5820a8f57..a627d65f3e 100644 --- a/src/wasm-lib/kcl/tests/import_glob/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_glob/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing import_glob.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -289,11 +284,6 @@ description: Program memory after executing import_glob.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/import_whole/program_memory.snap b/src/wasm-lib/kcl/tests/import_whole/program_memory.snap index dfd07c6def..629499715b 100644 --- a/src/wasm-lib/kcl/tests/import_whole/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_whole/program_memory.snap @@ -244,11 +244,6 @@ description: Program memory after executing import_whole.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/index_of_array/program_memory.snap b/src/wasm-lib/kcl/tests/index_of_array/program_memory.snap index 45f4ad72f2..fd928e837f 100644 --- a/src/wasm-lib/kcl/tests/index_of_array/program_memory.snap +++ b/src/wasm-lib/kcl/tests/index_of_array/program_memory.snap @@ -170,11 +170,6 @@ description: Program memory after executing index_of_array.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap b/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap index f9d5860e78..a646672473 100644 --- a/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap +++ b/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing kittycad_svg.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/kw_fn/program_memory.snap b/src/wasm-lib/kcl/tests/kw_fn/program_memory.snap index 9a044b1401..99f78ea012 100644 --- a/src/wasm-lib/kcl/tests/kw_fn/program_memory.snap +++ b/src/wasm-lib/kcl/tests/kw_fn/program_memory.snap @@ -273,11 +273,6 @@ description: Program memory after executing kw_fn.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -466,11 +461,6 @@ description: Program memory after executing kw_fn.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -542,11 +532,6 @@ description: Program memory after executing kw_fn.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -735,11 +720,6 @@ description: Program memory after executing kw_fn.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/kw_fn_with_defaults/program_memory.snap b/src/wasm-lib/kcl/tests/kw_fn_with_defaults/program_memory.snap index 3c697b6c5c..c7777f3f9d 100644 --- a/src/wasm-lib/kcl/tests/kw_fn_with_defaults/program_memory.snap +++ b/src/wasm-lib/kcl/tests/kw_fn_with_defaults/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing kw_fn_with_defaults.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -324,11 +319,6 @@ description: Program memory after executing kw_fn_with_defaults.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap index f506430033..387f2a0da1 100644 --- a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap +++ b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap b/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap index 42b7b57fd3..9a41cd734d 100644 --- a/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap +++ b/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing mike_stress_test.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap b/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap index e5ef3ec938..3b700fb6e0 100644 --- a/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap +++ b/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing neg_xz_plane.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/parametric/program_memory.snap b/src/wasm-lib/kcl/tests/parametric/program_memory.snap index a4b20303d1..390996bba8 100644 --- a/src/wasm-lib/kcl/tests/parametric/program_memory.snap +++ b/src/wasm-lib/kcl/tests/parametric/program_memory.snap @@ -406,11 +406,6 @@ description: Program memory after executing parametric.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap b/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap index ac16a8046a..bad3441427 100644 --- a/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap @@ -478,11 +478,6 @@ description: Program memory after executing parametric_with_tan_arc.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap index 806e19d48f..c288347030 100644 --- a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap +++ b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap @@ -2105,11 +2105,6 @@ description: Program memory after executing pentagon_fillet_sugar.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -2608,11 +2603,6 @@ description: Program memory after executing pentagon_fillet_sugar.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap b/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap index 887a0927d8..2900d7552d 100644 --- a/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap +++ b/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing pipe_as_arg.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -921,11 +916,6 @@ description: Program memory after executing pipe_as_arg.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -1130,11 +1120,6 @@ description: Program memory after executing pipe_as_arg.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -1934,11 +1919,6 @@ description: Program memory after executing pipe_as_arg.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -2370,11 +2350,6 @@ description: Program memory after executing pipe_as_arg.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -3174,11 +3149,6 @@ description: Program memory after executing pipe_as_arg.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -3383,11 +3353,6 @@ description: Program memory after executing pipe_as_arg.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -4187,11 +4152,6 @@ description: Program memory after executing pipe_as_arg.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap b/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap index 480dda6c9c..a167df16e1 100644 --- a/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap +++ b/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap @@ -169,11 +169,6 @@ description: Program memory after executing poop_chute.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/property_of_object/program_memory.snap b/src/wasm-lib/kcl/tests/property_of_object/program_memory.snap index 0cfc115684..8b58fb8e63 100644 --- a/src/wasm-lib/kcl/tests/property_of_object/program_memory.snap +++ b/src/wasm-lib/kcl/tests/property_of_object/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing property_of_object.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap b/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap index 38c237b9d2..ec491f00b8 100644 --- a/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap +++ b/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap @@ -130,11 +130,6 @@ description: Program memory after executing riddle_small.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -677,11 +672,6 @@ description: Program memory after executing riddle_small.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap index 9966c099bc..029442f9ee 100644 --- a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap index faba438ea9..75d4ed5a53 100644 --- a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap index 70f283a061..885f63a0ad 100644 --- a/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing sketch_in_object.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -531,11 +526,6 @@ description: Program memory after executing sketch_in_object.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -1000,11 +990,6 @@ description: Program memory after executing sketch_in_object.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -1414,11 +1399,6 @@ description: Program memory after executing sketch_in_object.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap index 8116d0e63c..09bfec910c 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing sketch_on_face.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap index 51efe65acc..bc53727e4d 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap @@ -671,11 +671,6 @@ description: Program memory after executing sketch_on_face_after_fillets_referen "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap index c5f6e45776..29f28d4d5f 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing sketch_on_face_circle_tagged.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -535,11 +530,6 @@ description: Program memory after executing sketch_on_face_circle_tagged.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap index c36858a9f5..d585310145 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing sketch_on_face_end.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -535,11 +530,6 @@ description: Program memory after executing sketch_on_face_end.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap index 7ce77a8598..3c726a9c12 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing sketch_on_face_end_negative_extrude. "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -535,11 +530,6 @@ description: Program memory after executing sketch_on_face_end_negative_extrude. "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap index 2623e8e0d3..e444ff55ee 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing sketch_on_face_start.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], @@ -535,11 +530,6 @@ description: Program memory after executing sketch_on_face_start.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/tan_arc_x_line/program_memory.snap b/src/wasm-lib/kcl/tests/tan_arc_x_line/program_memory.snap index 39d2ab342e..512eb23f07 100644 --- a/src/wasm-lib/kcl/tests/tan_arc_x_line/program_memory.snap +++ b/src/wasm-lib/kcl/tests/tan_arc_x_line/program_memory.snap @@ -293,11 +293,6 @@ description: Program memory after executing tan_arc_x_line.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap b/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap index 6a95c27670..098cb9ae3c 100644 --- a/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap @@ -305,11 +305,6 @@ description: Program memory after executing tangential_arc.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ], diff --git a/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap b/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap index cbcc8f3410..5dd75721ba 100644 --- a/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap +++ b/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap @@ -117,11 +117,6 @@ description: Program memory after executing xz_plane.kcl "name": "num", "start": 1414, "type": "Identifier" - }, - "type_": { - "Rad": null, - "type": "Primitive", - "type": "Number" } } ],