Comparing version 1.0.5 to 1.0.6
@@ -232,3 +232,4 @@ 'use strict'; | ||
record.resType = property.type; | ||
record.writable = true; | ||
record.writable = record.record.writable; | ||
} | ||
@@ -252,3 +253,3 @@ | ||
array.writable = isArray; | ||
array.writable = isArray && array.array.writable; | ||
} | ||
@@ -406,3 +407,3 @@ | ||
pointer.resType = pointer.pointer.resType.pointOn; | ||
pointer.assignable = true; | ||
pointer.writable = true; | ||
} | ||
@@ -409,0 +410,0 @@ |
@@ -234,3 +234,4 @@ import {EmptyVisitor} from './empty.js' | ||
record.resType = property.type | ||
record.writable = true | ||
record.writable = record.record.writable | ||
} | ||
@@ -261,3 +262,3 @@ | ||
array.writable = isArray | ||
array.writable = isArray && array.array.writable | ||
} | ||
@@ -433,3 +434,3 @@ | ||
pointer.resType = pointer.pointer.resType.pointOn | ||
pointer.assignable = true | ||
pointer.writable = true | ||
} | ||
@@ -436,0 +437,0 @@ |
{ | ||
"name": "algo-lang", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "Algorithmic language interpreter (in French only for now)", | ||
@@ -5,0 +5,0 @@ "homepage": "https://bitbucket.org/lsystems/algo-lang/overview", |
@@ -76,2 +76,3 @@ # Algorithmic natural language interpreter (language using french keywords) | ||
* `booleen` (defined just like `booleen = (faux, vrai)`) | ||
* `caractere` (can be cast with system routines to: `chaine`, `entier`) | ||
@@ -78,0 +79,0 @@ * `chaine` (can be cast with system routines to: `entier`, `reel`) |
Sorry, the diff of this file is not supported yet
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
491715
103