From ed317e62eb1cf98fde4461fc90c6cb1045ebc7e8 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Sat, 25 Jan 2020 17:48:03 +0800 Subject: fix Moonscript issue 375. --- spec/inputs/export.moon | 90 ++++++++++++++++++++++++------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) (limited to 'spec/inputs/export.moon') diff --git a/spec/inputs/export.moon b/spec/inputs/export.moon index 0a56379..a8c782c 100644 --- a/spec/inputs/export.moon +++ b/spec/inputs/export.moon @@ -1,77 +1,77 @@ do - export a,b,c = 223, 343 - export cool = "dad" + export a,b,c = 223, 343 + export cool = "dad" do - export class Something - umm: "cool" + export class Something + umm: "cool" do - export a,b,c - a,b,c,d = "hello" + export a,b,c + a,b,c,d = "hello" do - What = if this - 232 - else - 4343 + What = if this + 232 + else + 4343 - export ^ + export ^ - another = 3434 - Another = 7890 + another = 3434 + Another = 7890 - if inner then Yeah = "10000" + if inner then Yeah = "10000" - What = if this - 232 - else - 4343 + What = if this + 232 + else + 4343 do - export * + export * - What = if this - 232 - else - 4343 + What = if this + 232 + else + 4343 - x,y,z = 1,2,3 + x,y,z = 1,2,3 - y = -> - hallo = 3434 + y = -> + hallo = 3434 - with tmp - j = 2000 + with tmp + j = 2000 do - export * - x = 3434 - if y then - x = 10 + export * + x = 3434 + if y then + x = 10 do - export * - if y then - x = 10 - x = 3434 + export * + if y then + x = 10 + x = 3434 do - do - export * + do + export * - k = 1212 + k = 1212 - do - h = 100 + do + h = 100 - y = -> - h = 100 - k = 100 + y = -> + h = 100 + k = 100 - h = 100 + h = 100 -- cgit v1.2.3-55-g6feb