fez-lisp 1.6.17 → 1.6.19

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/lambda.html CHANGED
@@ -4,7 +4,7 @@
4
4
  name="viewport"
5
5
  content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height"
6
6
  />
7
- <meta name="description" content="Write and run Fez programs" />
7
+ <meta name="description" content="Run Fez programs" />
8
8
  <title>Lambda</title>
9
9
  <link rel="icon" type="image/svg+xml" href="./favicon.svg" />
10
10
  <style>
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.17",
5
+ "version": "1.6.19",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/compiler.js CHANGED
@@ -248,9 +248,7 @@ const comp = (tree, Drill) => {
248
248
  .map((x) => (typeof x === 'number' && x < 0 ? ` ${x}` : x))
249
249
  .join(token)});`
250
250
  case KEYWORDS.MULTIPLICATION:
251
- return `(${parseArgs(tail, Drill, token)});`
252
251
  case KEYWORDS.DIVISION:
253
- return `(${parseArgs(tail, Drill, token)});`
254
252
  case KEYWORDS.ADDITION:
255
253
  return `(${parseArgs(tail, Drill, token)});`
256
254
  case KEYWORDS.BITWISE_AND:
@@ -292,6 +290,7 @@ const comp = (tree, Drill) => {
292
290
  case STATIC_TYPES.AS_NUMBER:
293
291
  case DEBUG.LOG:
294
292
  case DEBUG.STRING:
293
+ case DEBUG.UNQUOTED_STRING:
295
294
  return compile(tail[0], Drill)
296
295
 
297
296
  default: {