dtr_core 0.12.3 → 0.12.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85ff3c49c332f69c8423696053b23021e14e3e4d4e1d6315d66d7c37cf0c689c
4
- data.tar.gz: aff32475fdf033d0a7422d0ad5bd703012d227ecd66965aece8309cb0ec71d65
3
+ metadata.gz: 7efd147e6163db925e32749c8ffb2779aca9c1e1b45b295ab96fed158a709b97
4
+ data.tar.gz: cc3cb8a6509fdde361504788632bb61bec5d2ec02259fdd1f95525e4d7cf792c
5
5
  SHA512:
6
- metadata.gz: 3320dcc5bfc8c2f17b5a46f9a3e1efd5e803983128bad0d28ca50666180546f7b7f1e79922208f362fd22797f61b6eb13608eb73885def8a52adc0d3843e7fbb
7
- data.tar.gz: e8c767e6a7ad45cca0216b53aca9e0bc328ab4e69a2ca01c9317c8ef78aed7c98c8bdcb3a9bee2f8329264baf996b947e24c577aa4f2fc77c292c87811cd82b8
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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dtr_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.3
4
+ version: 0.12.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Durst