dtr_core 0.12.3 → 0.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/dtr_core/supported_attributes.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7efd147e6163db925e32749c8ffb2779aca9c1e1b45b295ab96fed158a709b97
|
|
4
|
+
data.tar.gz: cc3cb8a6509fdde361504788632bb61bec5d2ec02259fdd1f95525e4d7cf792c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dec93fdc2c254fdda132aa340fcb5deb8725017896e6c14f1a9efdfcead20fb1cb3e363033163cc6bf5c0612b4ad0b9a84eab48548bf0aab9ce5163db6d16e54
|
|
7
|
+
data.tar.gz: fefe354e93df2098a62a993f8f6a019cfe76a9b2e0d5434f9ce17c1a13b6c2e68226c2c5213b78e86d82b5d70b5cc5ebcad14d3f2f7cbd81a6cc68d3d0a13164
|
|
@@ -64,7 +64,8 @@ module DTRCore
|
|
|
64
64
|
{ name: 'increment', description: 'set the first value to the .next() of the input value',
|
|
65
65
|
category: INSTRUCTION_CATEGORY_UNARY },
|
|
66
66
|
{ name: 'unary', description: 'assign to ASSIGN_NAME result of unary operation on input value', category: INSTRUCTION_CATEGORY_UNARY },
|
|
67
|
-
{ name: 'break', description: 'break out of loop', category: INSTRUCTION_CATEGORY_CONTROL_FLOW }
|
|
67
|
+
{ name: 'break', description: 'break out of loop', category: INSTRUCTION_CATEGORY_CONTROL_FLOW },
|
|
68
|
+
{ name: 'try_assign', description: 'assign the first input to the second input. The assign if the result of this assignment attempt.', category: INSTRUCTION_CATEGORY_LOGICAL }
|
|
68
69
|
].freeze
|
|
69
70
|
|
|
70
71
|
# Supported Types for DTR.
|