@webqit/subscript
Advanced tools
Comparing version 2.1.10 to 2.1.13
@@ -11,3 +11,3 @@ { | ||
"homepage": "https://webqit.io/tooling/subscript", | ||
"version": "2.1.10", | ||
"version": "2.1.13", | ||
"license": "MIT", | ||
@@ -14,0 +14,0 @@ "repository": { |
@@ -22,3 +22,2 @@ # Subscript Function Proposal | ||
+ [License](#license) | ||
+ [Prior Art](#prior-art) | ||
+ [Credits](#credits) | ||
@@ -163,3 +162,3 @@ | ||
```js | ||
// As a property | ||
// As property | ||
let myObject = { | ||
@@ -173,3 +172,3 @@ fn: function**( a, b ) { | ||
```js | ||
// As a method | ||
// As method | ||
let myObject = { | ||
@@ -183,3 +182,3 @@ **fn( a, b ) { | ||
```js | ||
// As a class method | ||
// As class method | ||
class MyClass { | ||
@@ -222,3 +221,3 @@ **fn( a, b ) { | ||
if ( a > 10 ) { | ||
return a + await b; | ||
return Promise.resolve( a + b ); | ||
} | ||
@@ -262,3 +261,3 @@ return a + b; | ||
And the update continues to include any subsequent dependents of the `message` variable itself... and any dependents of those dependents... until the end of the dependency thread. | ||
And the update continues to include any subsequent dependents of the `message` variable itself... and on to dependents of those dependents... until the end of the dependency thread. | ||
@@ -480,3 +479,3 @@ ```js | ||
So, in the loop above, an update event for any references in `initStatement`; `testStatement`; `incrementStatement` restarts the loop to keep the contract. | ||
So, in the loop above, an update event for any references in `initStatement`; `testStatement`; `incrementStatement` reruns the loop to keep the contract. | ||
@@ -497,3 +496,3 @@ As with a "for" loop, a "while" and "do ... while" loop are bound to references in their "test" expression. | ||
So, in each case above, an update event for any references in `testExpr` restarts the loop to keep the contract. | ||
So, in each case above, an update event for any references in `testExpr` reruns the loop to keep the contract. | ||
@@ -516,3 +515,3 @@ #### A "for ... of" And “for … in” Loop | ||
So, in each case above, an update event for any references in `iteratee` restarts the loop to keep the contract. | ||
So, in each case above, an update event for any references in `iteratee` reruns the loop to keep the contract. | ||
@@ -602,5 +601,5 @@ #### Fine-Grained Updates Within A Loop | ||
##### Handling Labeled `Break` And `Continue` Directives | ||
##### Handling Labeled `Break` And `Continue` Statements | ||
Fine-grained updates observe `break` and `continue` statements, even when these direct control to a parent block using *labels*. | ||
Fine-grained updates observe `break` and `continue` statements, even when these redirect control to a parent block using *labels*. | ||
@@ -829,4 +828,2 @@ ```js | ||
## Prior Art | ||
## Credits |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3690133
819