We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd2122f commit 4386767Copy full SHA for 4386767
2 files changed
nodes/statement/break.json
@@ -0,0 +1,11 @@
1
+{
2
+ "title": "Break",
3
+ "color": [
4
+ 200,
5
6
+ 200
7
+ ],
8
+ "type": "METHOD",
9
+ "inputs": {},
10
+ "outputs": []
11
+}
src/models/statement/Break.py
@@ -0,0 +1,8 @@
+from src.Node import Node, NodeType
+
+class Break(Node):
+ def __init__(self):
+ super().__init__("nodes/statement/break.json")
+ def toLuau(self) -> str:
+ return "break"
0 commit comments