fez-lisp 1.6.10 → 1.6.12

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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "fez-lisp",
3
3
  "description": "Lisp interpreted & compiled to JavaScript",
4
4
  "author": "AT290690",
5
- "version": "1.6.10",
5
+ "version": "1.6.12",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/keywords.js CHANGED
@@ -71,6 +71,7 @@ export const RUNTIME_TYPES = {
71
71
  }
72
72
  export const DEBUG = {
73
73
  STRING: 'string',
74
+ UNQUOTED_STRING: 'unquoted-string',
74
75
  LOG: 'log',
75
76
  ASSERT: 'assert',
76
77
  SIGNATURE: 'Info',
package/src/types.js CHANGED
@@ -420,6 +420,28 @@ export const SPECIAL_FORM_TYPES = {
420
420
  [RETURNS]: [COLLECTION]
421
421
  }
422
422
  },
423
+ [DEBUG.UNQUOTED_STRING]: {
424
+ [STATS]: {
425
+ [TYPE_PROP]: [APPLY],
426
+ [SIGNATURE]: DEBUG.UNQUOTED_STRING,
427
+ retried: Infinity,
428
+ [ARG_COUNT]: 1,
429
+ [ARGUMENTS]: [
430
+ {
431
+ [STATS]: {
432
+ retried: 0,
433
+ [SIGNATURE]: PLACEHOLDER,
434
+ [TYPE_PROP]: [COLLECTION],
435
+ [RETURNS]: [COLLECTION],
436
+
437
+ [ARGUMENTS]: [],
438
+ [ARG_COUNT]: 0
439
+ }
440
+ }
441
+ ],
442
+ [RETURNS]: [COLLECTION]
443
+ }
444
+ },
423
445
  [DEBUG.SIGNATURE]: {
424
446
  [STATS]: {
425
447
  [TYPE_PROP]: [APPLY],