diff options
| author | Li Jin <dragon-fly@qq.com> | 2026-02-24 12:24:10 +0800 |
|---|---|---|
| committer | Li Jin <dragon-fly@qq.com> | 2026-02-24 12:24:10 +0800 |
| commit | 0ccf4408271c8a0d147e3cf25689810862e8c1db (patch) | |
| tree | 0316978c886bee79db8f77cfe4521518763be71c /spec/outputs/macro.lua | |
| parent | c2a34e380b7ff57b071f8081e1cac589eab664d3 (diff) | |
| download | yuescript-0ccf4408271c8a0d147e3cf25689810862e8c1db.tar.gz yuescript-0ccf4408271c8a0d147e3cf25689810862e8c1db.tar.bz2 yuescript-0ccf4408271c8a0d147e3cf25689810862e8c1db.zip | |
Cleaned up and fixed more comment reserving codes.v0.33.4
Diffstat (limited to 'spec/outputs/macro.lua')
| -rw-r--r-- | spec/outputs/macro.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/outputs/macro.lua b/spec/outputs/macro.lua index 89c6e63..91048e6 100644 --- a/spec/outputs/macro.lua +++ b/spec/outputs/macro.lua | |||
| @@ -301,28 +301,28 @@ end):Destroy() | |||
| 301 | end | 301 | end |
| 302 | print((setmetatable({ | 302 | print((setmetatable({ |
| 303 | 'abc', | 303 | 'abc', |
| 304 | a = 123, | 304 | a = 123 |
| 305 | }, { | 305 | }, { |
| 306 | __call = function(self) | 306 | __call = function(self) |
| 307 | return 998 | 307 | return 998 |
| 308 | end | 308 | end |
| 309 | }))[1], (setmetatable({ | 309 | }))[1], (setmetatable({ |
| 310 | 'abc', | 310 | 'abc', |
| 311 | a = 123, | 311 | a = 123 |
| 312 | }, { | 312 | }, { |
| 313 | __call = function(self) | 313 | __call = function(self) |
| 314 | return 998 | 314 | return 998 |
| 315 | end | 315 | end |
| 316 | })).a, (setmetatable({ | 316 | })).a, (setmetatable({ |
| 317 | 'abc', | 317 | 'abc', |
| 318 | a = 123, | 318 | a = 123 |
| 319 | }, { | 319 | }, { |
| 320 | __call = function(self) | 320 | __call = function(self) |
| 321 | return 998 | 321 | return 998 |
| 322 | end | 322 | end |
| 323 | }))(), setmetatable({ | 323 | }))(), setmetatable({ |
| 324 | 'abc', | 324 | 'abc', |
| 325 | a = 123, | 325 | a = 123 |
| 326 | }, { | 326 | }, { |
| 327 | __call = function(self) | 327 | __call = function(self) |
| 328 | return 998 | 328 | return 998 |
