diff options
author | Li Jin <dragon-fly@qq.com> | 2022-04-06 18:03:49 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2022-04-06 18:03:49 +0800 |
commit | 9af15048c75e845d9f6f647a3ebe2f538fac995c (patch) | |
tree | 9745928383df49940d6e17a95c269a1ae91b82f5 /spec/inputs | |
parent | fe6ce26a58f23311cda3e82b3dfd3a55b9b16bc8 (diff) | |
download | yuescript-9af15048c75e845d9f6f647a3ebe2f538fac995c.tar.gz yuescript-9af15048c75e845d9f6f647a3ebe2f538fac995c.tar.bz2 yuescript-9af15048c75e845d9f6f647a3ebe2f538fac995c.zip |
allow doing mixin with a class and a table.
Diffstat (limited to 'spec/inputs')
-rw-r--r-- | spec/inputs/class.yue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/inputs/class.yue b/spec/inputs/class.yue index 82dbef6..c7be481 100644 --- a/spec/inputs/class.yue +++ b/spec/inputs/class.yue | |||
@@ -229,7 +229,7 @@ do | |||
229 | class extends lapis.Application | 229 | class extends lapis.Application |
230 | "/": => json: { status: true } | 230 | "/": => json: { status: true } |
231 | 231 | ||
232 | class A using B, C, D | 232 | class A using B, C, D, {value: 123} |
233 | 233 | ||
234 | class Example | 234 | class Example |
235 | @field1 = 1 | 235 | @field1 = 1 |