efront 4.35.2 → 4.35.3
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/coms/basic/#loader.js +1 -1
- package/coms/basic/math.js +35 -4
- package/coms/basic/math.md +42 -25
- package/coms/compile/Program.js +1 -1
- package/coms/compile/common.js +1 -1
- package/coms/compile//347/256/227/345/274/217.js +24 -13
- package/coms/compile//347/264/240/351/246/250.js +1 -1
- package/coms/compile//347/264/240/351/246/250_test.js +14 -0
- package/coms/zimoli/arriswise.js +7 -2
- package/coms/zimoli/getGenerator.js +0 -1
- package/coms/zimoli/list.js +609 -576
- package/coms//350/214/250/350/217/260//350/257/255/350/250/200.js +5 -0
- package/package.json +1 -1
- package/public/efront.js +1 -1
- package/public//346/226/207/344/273/266/347/263/273/347/273/237//344/270/273/351/241/265.jsp +2 -2
|
@@ -40,6 +40,7 @@ gl.straps = gl.straps.concat(
|
|
|
40
40
|
"step", "smoothstep",
|
|
41
41
|
"mix", "clamp"
|
|
42
42
|
);
|
|
43
|
+
const ms = new compile$算式.MathScript;
|
|
43
44
|
var rust = new compile$Javascript;
|
|
44
45
|
rust.powermap = Object.assign({}, rust.powermap);
|
|
45
46
|
rust.powermap["->"] = 0;
|
|
@@ -137,6 +138,9 @@ var 语言 = {
|
|
|
137
138
|
json(a) {
|
|
138
139
|
return 扫描(a, json);
|
|
139
140
|
},
|
|
141
|
+
mathscript(a) {
|
|
142
|
+
return 扫描(a, ms);
|
|
143
|
+
},
|
|
140
144
|
less(a) {
|
|
141
145
|
var c = 扫描(a, 素心);
|
|
142
146
|
setless(c);
|
|
@@ -187,4 +191,5 @@ var 语言 = {
|
|
|
187
191
|
语言.tsx = 语言.ts = 语言.typescript;
|
|
188
192
|
语言.xht = 语言.jsp = 语言.asp = 语言.php = 语言.xml = 语言.html;
|
|
189
193
|
语言.vue = 语言.xht;
|
|
194
|
+
语言.ms = 语言.mathscript;
|
|
190
195
|
return 语言;
|