Skip to content

Commit 2d55cf2

Browse files
committed
Add to create object
1 parent 9655cbd commit 2d55cf2

File tree

4 files changed

+44
-5
lines changed

4 files changed

+44
-5
lines changed

Parser.js

+31-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const reserved_none_blacketmode = [
1313
];
1414

1515
const isNumber = (c) => "0123456789".indexOf(c) >= 0;
16-
const isOperator = (c) => "+-*/%=!<>,".indexOf(c) >= 0;
16+
const isOperator = (c) => "+-*/%=!<>,.:".indexOf(c) >= 0;
1717
const isWhite = (c) => " \t\n".indexOf(c) >= 0;
1818

1919
export class Parser {
@@ -273,6 +273,36 @@ export class Parser {
273273
elements,
274274
};
275275
}
276+
if (t1.type == "{") {
277+
const properties = [];
278+
for (;;) {
279+
const t2 = this.getToken();
280+
console.log("t2", t2);
281+
if (t2.type == "}") break;
282+
if (t2.type != "var") throw new Error("オブジェクトの定義には名前が必要です");
283+
const name = t2.name;
284+
const t4 = this.getToken();
285+
console.log("t4", t4);
286+
if (t4.operator != ":") throw new Error("オブジェクトの定義は名前の後に : が必要です");
287+
const value = this.getExpression();
288+
properties.push({
289+
type: "Property",
290+
key: {
291+
type: "Identifier",
292+
name,
293+
},
294+
value,
295+
});
296+
const t3 = this.getToken();
297+
if (t3.type == "}") break;
298+
if (t3.type != "operator" && t3.operator != ",") throw new Error("オブジェクトの定義は , で区切る必要があります");
299+
}
300+
console.log(properties);
301+
return {
302+
type: "ObjectExpression",
303+
properties,
304+
};
305+
}
276306
if (t1.type == "num" || t1.type == "string") {
277307
return {
278308
type: "Literal",

Runtime.js

+10-4
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ class Scope {
5050
}
5151
throw new Error("定義されていない変数 " + name + " が使われました");
5252
}
53-
getVarArray(name) {
53+
getVarObject(name) {
5454
const v = this.getVar(name);
55-
if (Array.isArray(v)) return v;
55+
if (typeof v == "object") return v;
5656
const v2 = new Array();
5757
v2.defaultValue = v;
5858
this.setVar(name, v2);
@@ -123,7 +123,7 @@ export class Runtime {
123123
if (!scope.isDefined(name)) {
124124
scope.setVar(name, []);
125125
}
126-
const v = scope.getVarArray(name);
126+
const v = scope.getVarObject(name);
127127
if (idxes.length == 0) {
128128
return v;
129129
} else if (idxes.length == 1 && typeof v == "string") {
@@ -344,7 +344,7 @@ export class Runtime {
344344
if (!scope.isDefined(name)) {
345345
throw new Error("初期化されていない配列 " + name + " が使われました");
346346
}
347-
const v = scope.getVarArray(name);
347+
const v = scope.getVarObject(name);
348348
if (idxes.length == 0) {
349349
return v;
350350
} else if (idxes.length == 1 && typeof v == "string") {
@@ -388,6 +388,12 @@ export class Runtime {
388388
res.push(await this.calcExpression(i, scope));
389389
}
390390
return res;
391+
} else if (ast.type == "ObjectExpression") {
392+
const res = {};
393+
for (const i of ast.properties) {
394+
res[i.key.name] = await this.calcExpression(i.value, scope);
395+
}
396+
return res;
391397
} else if (ast.type == "BinaryExpression" || ast.type == "LogicalExpression") {
392398
const n = await this.calcExpression(ast.left, scope);
393399
const m = await this.calcExpression(ast.right, scope);

examples.csv

+1
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ commontest2025-1_ja.dncl,23. common test 2025 1 (日本語変数)
2525
commontest2025-2.dncl,24. common test 2025 2
2626
commontest2025-2_ja.dncl,25. common test 2025 2 (日本語変数)
2727
import.dncl,26. import functions
28+
object.dncl,27. オブジェクトの生成

examples/object.dncl

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# 27. オブジェクトの生成
2+
a = { a: 3, b: "ABC" }

0 commit comments

Comments
 (0)