1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480 |
- package tengo_test
- import (
- "fmt"
- "io/ioutil"
- "path/filepath"
- "strings"
- "testing"
- "github.com/d5/tengo/v2"
- "github.com/d5/tengo/v2/parser"
- "github.com/d5/tengo/v2/require"
- "github.com/d5/tengo/v2/stdlib"
- )
- func TestCompiler_Compile(t *testing.T) {
- expectCompile(t, `1 + 2`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `1; 2`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `1 - 2`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 12),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `1 * 2`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 13),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `2 / 1`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 14),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(2),
- intObject(1))))
- expectCompile(t, `true`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpTrue),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray()))
- expectCompile(t, `false`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpFalse),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray()))
- expectCompile(t, `1 > 2`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 39),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `1 < 2`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 38),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `1 >= 2`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 44),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `1 <= 2`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 43),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `1 == 2`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpEqual),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `1 != 2`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpNotEqual),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `true == false`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpTrue),
- tengo.MakeInstruction(parser.OpFalse),
- tengo.MakeInstruction(parser.OpEqual),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray()))
- expectCompile(t, `true != false`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpTrue),
- tengo.MakeInstruction(parser.OpFalse),
- tengo.MakeInstruction(parser.OpNotEqual),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray()))
- expectCompile(t, `-1`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpMinus),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1))))
- expectCompile(t, `!true`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpTrue),
- tengo.MakeInstruction(parser.OpLNot),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray()))
- expectCompile(t, `if true { 10 }; 3333`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpTrue), // 0000
- tengo.MakeInstruction(parser.OpJumpFalsy, 10), // 0001
- tengo.MakeInstruction(parser.OpConstant, 0), // 0004
- tengo.MakeInstruction(parser.OpPop), // 0007
- tengo.MakeInstruction(parser.OpConstant, 1), // 0008
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)), // 0011
- objectsArray(
- intObject(10),
- intObject(3333))))
- expectCompile(t, `if (true) { 10 } else { 20 }; 3333;`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpTrue), // 0000
- tengo.MakeInstruction(parser.OpJumpFalsy, 15), // 0001
- tengo.MakeInstruction(parser.OpConstant, 0), // 0004
- tengo.MakeInstruction(parser.OpPop), // 0007
- tengo.MakeInstruction(parser.OpJump, 19), // 0008
- tengo.MakeInstruction(parser.OpConstant, 1), // 0011
- tengo.MakeInstruction(parser.OpPop), // 0014
- tengo.MakeInstruction(parser.OpConstant, 2), // 0015
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)), // 0018
- objectsArray(
- intObject(10),
- intObject(20),
- intObject(3333))))
- expectCompile(t, `"kami"`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- stringObject("kami"))))
- expectCompile(t, `"ka" + "mi"`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- stringObject("ka"),
- stringObject("mi"))))
- expectCompile(t, `a := 1; b := 2; a += b`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpSetGlobal, 1),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `a := 1; b := 2; a /= b`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpSetGlobal, 1),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 14),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2))))
- expectCompile(t, `[]`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpArray, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray()))
- expectCompile(t, `[1, 2, 3]`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpArray, 3),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- intObject(3))))
- expectCompile(t, `[1 + 2, 3 - 4, 5 * 6]`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpConstant, 3),
- tengo.MakeInstruction(parser.OpBinaryOp, 12),
- tengo.MakeInstruction(parser.OpConstant, 4),
- tengo.MakeInstruction(parser.OpConstant, 5),
- tengo.MakeInstruction(parser.OpBinaryOp, 13),
- tengo.MakeInstruction(parser.OpArray, 3),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- intObject(3),
- intObject(4),
- intObject(5),
- intObject(6))))
- expectCompile(t, `{}`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpMap, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray()))
- expectCompile(t, `{a: 2, b: 4, c: 6}`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpConstant, 3),
- tengo.MakeInstruction(parser.OpConstant, 4),
- tengo.MakeInstruction(parser.OpConstant, 5),
- tengo.MakeInstruction(parser.OpMap, 6),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- stringObject("a"),
- intObject(2),
- stringObject("b"),
- intObject(4),
- stringObject("c"),
- intObject(6))))
- expectCompile(t, `{a: 2 + 3, b: 5 * 6}`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpConstant, 3),
- tengo.MakeInstruction(parser.OpConstant, 4),
- tengo.MakeInstruction(parser.OpConstant, 5),
- tengo.MakeInstruction(parser.OpBinaryOp, 13),
- tengo.MakeInstruction(parser.OpMap, 4),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- stringObject("a"),
- intObject(2),
- intObject(3),
- stringObject("b"),
- intObject(5),
- intObject(6))))
- expectCompile(t, `[1, 2, 3][1 + 1]`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpArray, 3),
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpIndex),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- intObject(3))))
- expectCompile(t, `{a: 2}[2 - 1]`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpMap, 2),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpBinaryOp, 12),
- tengo.MakeInstruction(parser.OpIndex),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- stringObject("a"),
- intObject(2),
- intObject(1))))
- expectCompile(t, `[1, 2, 3][:]`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpArray, 3),
- tengo.MakeInstruction(parser.OpNull),
- tengo.MakeInstruction(parser.OpNull),
- tengo.MakeInstruction(parser.OpSliceIndex),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- intObject(3))))
- expectCompile(t, `[1, 2, 3][0 : 2]`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpArray, 3),
- tengo.MakeInstruction(parser.OpConstant, 3),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpSliceIndex),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- intObject(3),
- intObject(0))))
- expectCompile(t, `[1, 2, 3][:2]`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpArray, 3),
- tengo.MakeInstruction(parser.OpNull),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpSliceIndex),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- intObject(3))))
- expectCompile(t, `[1, 2, 3][0:]`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpArray, 3),
- tengo.MakeInstruction(parser.OpConstant, 3),
- tengo.MakeInstruction(parser.OpNull),
- tengo.MakeInstruction(parser.OpSliceIndex),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- intObject(3),
- intObject(0))))
- expectCompile(t, `f1 := func(a) { return a }; f1([1, 2]...);`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpArray, 2),
- tengo.MakeInstruction(parser.OpCall, 1, 1),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- compiledFunction(1, 1,
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpReturn, 1)),
- intObject(1),
- intObject(2))))
- expectCompile(t, `func() { return 5 + 10 }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(5),
- intObject(10),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `func() { 5 + 10 }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(5),
- intObject(10),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpReturn, 0)))))
- expectCompile(t, `func() { 1; 2 }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpReturn, 0)))))
- expectCompile(t, `func() { 1; return 2 }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `func() { if(true) { return 1 } else { return 2 } }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpTrue), // 0000
- tengo.MakeInstruction(parser.OpJumpFalsy, 11), // 0001
- tengo.MakeInstruction(parser.OpConstant, 0), // 0004
- tengo.MakeInstruction(parser.OpReturn, 1), // 0007
- tengo.MakeInstruction(parser.OpConstant, 1), // 0009
- tengo.MakeInstruction(parser.OpReturn, 1))))) // 0012
- expectCompile(t, `func() { 1; if(true) { 2 } else { 3 }; 4 }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 4),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- intObject(3),
- intObject(4),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0), // 0000
- tengo.MakeInstruction(parser.OpPop), // 0003
- tengo.MakeInstruction(parser.OpTrue), // 0004
- tengo.MakeInstruction(parser.OpJumpFalsy, 19), // 0005
- tengo.MakeInstruction(parser.OpConstant, 1), // 0008
- tengo.MakeInstruction(parser.OpPop), // 0011
- tengo.MakeInstruction(parser.OpJump, 23), // 0012
- tengo.MakeInstruction(parser.OpConstant, 2), // 0015
- tengo.MakeInstruction(parser.OpPop), // 0018
- tengo.MakeInstruction(parser.OpConstant, 3), // 0019
- tengo.MakeInstruction(parser.OpPop), // 0022
- tengo.MakeInstruction(parser.OpReturn, 0))))) // 0023
- expectCompile(t, `func() { }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpReturn, 0)))))
- expectCompile(t, `func() { 24 }()`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpCall, 0, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(24),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpReturn, 0)))))
- expectCompile(t, `func() { return 24 }()`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpCall, 0, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(24),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `noArg := func() { 24 }; noArg();`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpCall, 0, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(24),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpReturn, 0)))))
- expectCompile(t, `noArg := func() { return 24 }; noArg();`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpCall, 0, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(24),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `n := 55; func() { n };`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(55),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpReturn, 0)))))
- expectCompile(t, `func() { n := 55; return n }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(55),
- compiledFunction(1, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpDefineLocal, 0),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `func() { a := 55; b := 77; return a + b }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(55),
- intObject(77),
- compiledFunction(2, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpDefineLocal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpDefineLocal, 1),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpGetLocal, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `f1 := func(a) { return a }; f1(24);`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpCall, 1, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- compiledFunction(1, 1,
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpReturn, 1)),
- intObject(24))))
- expectCompile(t, `varTest := func(...a) { return a }; varTest(1,2,3);`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpConstant, 3),
- tengo.MakeInstruction(parser.OpCall, 3, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- compiledFunction(1, 1,
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpReturn, 1)),
- intObject(1), intObject(2), intObject(3))))
- expectCompile(t, `f1 := func(a, b, c) { a; b; return c; }; f1(24, 25, 26);`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpConstant, 3),
- tengo.MakeInstruction(parser.OpCall, 3, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- compiledFunction(3, 3,
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpGetLocal, 1),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpGetLocal, 2),
- tengo.MakeInstruction(parser.OpReturn, 1)),
- intObject(24),
- intObject(25),
- intObject(26))))
- expectCompile(t, `func() { n := 55; n = 23; return n }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(55),
- intObject(23),
- compiledFunction(1, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpDefineLocal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpSetLocal, 0),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `len([]);`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpGetBuiltin, 0),
- tengo.MakeInstruction(parser.OpArray, 0),
- tengo.MakeInstruction(parser.OpCall, 1, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray()))
- expectCompile(t, `func() { return len([]) }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpGetBuiltin, 0),
- tengo.MakeInstruction(parser.OpArray, 0),
- tengo.MakeInstruction(parser.OpCall, 1, 0),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `func(a) { func(b) { return a + b } }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- compiledFunction(1, 1,
- tengo.MakeInstruction(parser.OpGetFree, 0),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpReturn, 1)),
- compiledFunction(1, 1,
- tengo.MakeInstruction(parser.OpGetLocalPtr, 0),
- tengo.MakeInstruction(parser.OpClosure, 0, 1),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpReturn, 0)))))
- expectCompile(t, `
- func(a) {
- return func(b) {
- return func(c) {
- return a + b + c
- }
- }
- }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- compiledFunction(1, 1,
- tengo.MakeInstruction(parser.OpGetFree, 0),
- tengo.MakeInstruction(parser.OpGetFree, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpReturn, 1)),
- compiledFunction(1, 1,
- tengo.MakeInstruction(parser.OpGetFreePtr, 0),
- tengo.MakeInstruction(parser.OpGetLocalPtr, 0),
- tengo.MakeInstruction(parser.OpClosure, 0, 2),
- tengo.MakeInstruction(parser.OpReturn, 1)),
- compiledFunction(1, 1,
- tengo.MakeInstruction(parser.OpGetLocalPtr, 0),
- tengo.MakeInstruction(parser.OpClosure, 1, 1),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `
- g := 55;
- func() {
- a := 66;
- return func() {
- b := 77;
- return func() {
- c := 88;
- return g + a + b + c;
- }
- }
- }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 6),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(55),
- intObject(66),
- intObject(77),
- intObject(88),
- compiledFunction(1, 0,
- tengo.MakeInstruction(parser.OpConstant, 3),
- tengo.MakeInstruction(parser.OpDefineLocal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetFree, 0),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpGetFree, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpReturn, 1)),
- compiledFunction(1, 0,
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpDefineLocal, 0),
- tengo.MakeInstruction(parser.OpGetFreePtr, 0),
- tengo.MakeInstruction(parser.OpGetLocalPtr, 0),
- tengo.MakeInstruction(parser.OpClosure, 4, 2),
- tengo.MakeInstruction(parser.OpReturn, 1)),
- compiledFunction(1, 0,
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpDefineLocal, 0),
- tengo.MakeInstruction(parser.OpGetLocalPtr, 0),
- tengo.MakeInstruction(parser.OpClosure, 5, 1),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `for i:=0; i<10; i++ {}`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 38),
- tengo.MakeInstruction(parser.OpJumpFalsy, 35),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpJump, 6),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(0),
- intObject(10),
- intObject(1))))
- expectCompile(t, `m := {}; for k, v in m {}`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpMap, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpIteratorInit),
- tengo.MakeInstruction(parser.OpSetGlobal, 1),
- tengo.MakeInstruction(parser.OpGetGlobal, 1),
- tengo.MakeInstruction(parser.OpIteratorNext),
- tengo.MakeInstruction(parser.OpJumpFalsy, 41),
- tengo.MakeInstruction(parser.OpGetGlobal, 1),
- tengo.MakeInstruction(parser.OpIteratorKey),
- tengo.MakeInstruction(parser.OpSetGlobal, 2),
- tengo.MakeInstruction(parser.OpGetGlobal, 1),
- tengo.MakeInstruction(parser.OpIteratorValue),
- tengo.MakeInstruction(parser.OpSetGlobal, 3),
- tengo.MakeInstruction(parser.OpJump, 13),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray()))
- expectCompile(t, `a := 0; a == 0 && a != 1 || a < 1`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpEqual),
- tengo.MakeInstruction(parser.OpAndJump, 25),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpNotEqual),
- tengo.MakeInstruction(parser.OpOrJump, 38),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 38),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(0),
- intObject(1))))
- // unknown module name
- expectCompileError(t, `import("user1")`, "module 'user1' not found")
- // too many errors
- expectCompileError(t, `
- r["x"] = {
- @a:1,
- @b:1,
- @c:1,
- @d:1,
- @e:1,
- @f:1,
- @g:1,
- @h:1,
- @i:1,
- @j:1,
- @k:1
- }
- `, "Parse Error: illegal character U+0040 '@'\n\tat test:3:5 (and 10 more errors)")
- expectCompileError(t, `import("")`, "empty module name")
- // https://github.com/d5/tengo/issues/314
- expectCompileError(t, `
- (func() {
- fn := fn()
- })()
- `, "unresolved reference 'fn")
- }
- func TestCompilerErrorReport(t *testing.T) {
- expectCompileError(t, `import("user1")`,
- "Compile Error: module 'user1' not found\n\tat test:1:1")
- expectCompileError(t, `a = 1`,
- "Compile Error: unresolved reference 'a'\n\tat test:1:1")
- expectCompileError(t, `a := a`,
- "Compile Error: unresolved reference 'a'\n\tat test:1:6")
- expectCompileError(t, `a, b := 1, 2`,
- "Compile Error: tuple assignment not allowed\n\tat test:1:1")
- expectCompileError(t, `a.b := 1`,
- "not allowed with selector")
- expectCompileError(t, `a:=1; a:=3`,
- "Compile Error: 'a' redeclared in this block\n\tat test:1:7")
- expectCompileError(t, `return 5`,
- "Compile Error: return not allowed outside function\n\tat test:1:1")
- expectCompileError(t, `func() { break }`,
- "Compile Error: break not allowed outside loop\n\tat test:1:10")
- expectCompileError(t, `func() { continue }`,
- "Compile Error: continue not allowed outside loop\n\tat test:1:10")
- expectCompileError(t, `func() { export 5 }`,
- "Compile Error: export not allowed inside function\n\tat test:1:10")
- }
- func TestCompilerDeadCode(t *testing.T) {
- expectCompile(t, `
- func() {
- a := 4
- return a
- b := 5 // dead code from here
- c := a
- return b
- }`,
- bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(4),
- intObject(5),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpDefineLocal, 0),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `
- func() {
- if true {
- return 5
- a := 4 // dead code from here
- b := a
- return b
- } else {
- return 4
- c := 5 // dead code from here
- d := c
- return d
- }
- }`, bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(5),
- intObject(4),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpTrue),
- tengo.MakeInstruction(parser.OpJumpFalsy, 11),
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpReturn, 1),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `
- func() {
- a := 1
- for {
- if a == 5 {
- return 10
- }
- 5 + 5
- return 20
- b := a
- return b
- }
- }`, bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 4),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(5),
- intObject(10),
- intObject(20),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpDefineLocal, 0),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpEqual),
- tengo.MakeInstruction(parser.OpJumpFalsy, 21),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpReturn, 1),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpBinaryOp, 11),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpConstant, 3),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `
- func() {
- if true {
- return 5
- a := 4 // dead code from here
- b := a
- return b
- } else {
- return 4
- c := 5 // dead code from here
- d := c
- return d
- }
- }`, bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(5),
- intObject(4),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpTrue),
- tengo.MakeInstruction(parser.OpJumpFalsy, 11),
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpReturn, 1),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- expectCompile(t, `
- func() {
- if true {
- return
- }
- return
- return 123
- }`, bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(123),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpTrue),
- tengo.MakeInstruction(parser.OpJumpFalsy, 8),
- tengo.MakeInstruction(parser.OpReturn, 0),
- tengo.MakeInstruction(parser.OpReturn, 0),
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpReturn, 1)))))
- }
- func TestCompilerScopes(t *testing.T) {
- expectCompile(t, `
- if a := 1; a {
- a = 2
- b := a
- } else {
- a = 3
- b := a
- }`, bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpJumpFalsy, 31),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 1),
- tengo.MakeInstruction(parser.OpJump, 43),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpSetGlobal, 0),
- tengo.MakeInstruction(parser.OpGetGlobal, 0),
- tengo.MakeInstruction(parser.OpSetGlobal, 2),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- intObject(3))))
- expectCompile(t, `
- func() {
- if a := 1; a {
- a = 2
- b := a
- } else {
- a = 3
- b := a
- }
- }`, bytecode(
- concatInsts(
- tengo.MakeInstruction(parser.OpConstant, 3),
- tengo.MakeInstruction(parser.OpPop),
- tengo.MakeInstruction(parser.OpSuspend)),
- objectsArray(
- intObject(1),
- intObject(2),
- intObject(3),
- compiledFunction(0, 0,
- tengo.MakeInstruction(parser.OpConstant, 0),
- tengo.MakeInstruction(parser.OpDefineLocal, 0),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpJumpFalsy, 26),
- tengo.MakeInstruction(parser.OpConstant, 1),
- tengo.MakeInstruction(parser.OpSetLocal, 0),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpDefineLocal, 1),
- tengo.MakeInstruction(parser.OpJump, 35),
- tengo.MakeInstruction(parser.OpConstant, 2),
- tengo.MakeInstruction(parser.OpSetLocal, 0),
- tengo.MakeInstruction(parser.OpGetLocal, 0),
- tengo.MakeInstruction(parser.OpDefineLocal, 1),
- tengo.MakeInstruction(parser.OpReturn, 0)))))
- }
- func TestCompiler_custom_extension(t *testing.T) {
- pathFileSource := "./testdata/issue286/test.mshk"
- modules := stdlib.GetModuleMap(stdlib.AllModuleNames()...)
- src, err := ioutil.ReadFile(pathFileSource)
- require.NoError(t, err)
- // Escape shegang
- if len(src) > 1 && string(src[:2]) == "#!" {
- copy(src, "//")
- }
- fileSet := parser.NewFileSet()
- srcFile := fileSet.AddFile(filepath.Base(pathFileSource), -1, len(src))
- p := parser.NewParser(srcFile, src, nil)
- file, err := p.ParseFile()
- require.NoError(t, err)
- c := tengo.NewCompiler(srcFile, nil, nil, modules, nil)
- c.EnableFileImport(true)
- c.SetImportDir(filepath.Dir(pathFileSource))
- // Search for "*.tengo" and ".mshk"(custom extension)
- c.SetImportFileExt(".tengo", ".mshk")
- err = c.Compile(file)
- require.NoError(t, err)
- }
- func TestCompilerNewCompiler_default_file_extension(t *testing.T) {
- modules := stdlib.GetModuleMap(stdlib.AllModuleNames()...)
- input := "{}"
- fileSet := parser.NewFileSet()
- file := fileSet.AddFile("test", -1, len(input))
- c := tengo.NewCompiler(file, nil, nil, modules, nil)
- c.EnableFileImport(true)
- require.Equal(t, []string{".tengo"}, c.GetImportFileExt(),
- "newly created compiler object must contain the default extension")
- }
- func TestCompilerSetImportExt_extension_name_validation(t *testing.T) {
- c := new(tengo.Compiler) // Instantiate a new compiler object with no initialization
- // Test of empty arg
- err := c.SetImportFileExt()
- require.Error(t, err, "empty arg should return an error")
- // Test of various arg types
- for _, test := range []struct {
- extensions []string
- expect []string
- requireErr bool
- msgFail string
- }{
- {[]string{".tengo"}, []string{".tengo"}, false,
- "well-formed extension should not return an error"},
- {[]string{""}, []string{".tengo"}, true,
- "empty extension name should return an error"},
- {[]string{"foo"}, []string{".tengo"}, true,
- "name without dot prefix should return an error"},
- {[]string{"foo.bar"}, []string{".tengo"}, true,
- "malformed extension should return an error"},
- {[]string{"foo."}, []string{".tengo"}, true,
- "malformed extension should return an error"},
- {[]string{".mshk"}, []string{".mshk"}, false,
- "name with dot prefix should be added"},
- {[]string{".foo", ".bar"}, []string{".foo", ".bar"}, false,
- "it should replace instead of appending"},
- } {
- err := c.SetImportFileExt(test.extensions...)
- if test.requireErr {
- require.Error(t, err, test.msgFail)
- }
- expect := test.expect
- actual := c.GetImportFileExt()
- require.Equal(t, expect, actual, test.msgFail)
- }
- }
- func concatInsts(instructions ...[]byte) []byte {
- var concat []byte
- for _, i := range instructions {
- concat = append(concat, i...)
- }
- return concat
- }
- func bytecode(
- instructions []byte,
- constants []tengo.Object,
- ) *tengo.Bytecode {
- return &tengo.Bytecode{
- FileSet: parser.NewFileSet(),
- MainFunction: &tengo.CompiledFunction{Instructions: instructions},
- Constants: constants,
- }
- }
- func expectCompile(
- t *testing.T,
- input string,
- expected *tengo.Bytecode,
- ) {
- actual, trace, err := traceCompile(input, nil)
- var ok bool
- defer func() {
- if !ok {
- for _, tr := range trace {
- t.Log(tr)
- }
- }
- }()
- require.NoError(t, err)
- equalBytecode(t, expected, actual)
- ok = true
- }
- func expectCompileError(t *testing.T, input, expected string) {
- _, trace, err := traceCompile(input, nil)
- var ok bool
- defer func() {
- if !ok {
- for _, tr := range trace {
- t.Log(tr)
- }
- }
- }()
- require.Error(t, err)
- require.True(t, strings.Contains(err.Error(), expected),
- "expected error string: %s, got: %s", expected, err.Error())
- ok = true
- }
- func equalBytecode(t *testing.T, expected, actual *tengo.Bytecode) {
- require.Equal(t, expected.MainFunction, actual.MainFunction)
- equalConstants(t, expected.Constants, actual.Constants)
- }
- func equalConstants(t *testing.T, expected, actual []tengo.Object) {
- require.Equal(t, len(expected), len(actual))
- for i := 0; i < len(expected); i++ {
- require.Equal(t, expected[i], actual[i])
- }
- }
- type compileTracer struct {
- Out []string
- }
- func (o *compileTracer) Write(p []byte) (n int, err error) {
- o.Out = append(o.Out, string(p))
- return len(p), nil
- }
- func traceCompile(
- input string,
- symbols map[string]tengo.Object,
- ) (res *tengo.Bytecode, trace []string, err error) {
- fileSet := parser.NewFileSet()
- file := fileSet.AddFile("test", -1, len(input))
- p := parser.NewParser(file, []byte(input), nil)
- symTable := tengo.NewSymbolTable()
- for name := range symbols {
- symTable.Define(name)
- }
- for idx, fn := range tengo.GetAllBuiltinFunctions() {
- symTable.DefineBuiltin(idx, fn.Name)
- }
- tr := &compileTracer{}
- c := tengo.NewCompiler(file, symTable, nil, nil, tr)
- parsed, err := p.ParseFile()
- if err != nil {
- return
- }
- err = c.Compile(parsed)
- res = c.Bytecode()
- res.RemoveDuplicates()
- {
- trace = append(trace, fmt.Sprintf("Compiler Trace:\n%s",
- strings.Join(tr.Out, "")))
- trace = append(trace, fmt.Sprintf("Compiled Constants:\n%s",
- strings.Join(res.FormatConstants(), "\n")))
- trace = append(trace, fmt.Sprintf("Compiled Instructions:\n%s\n",
- strings.Join(res.FormatInstructions(), "\n")))
- }
- if err != nil {
- return
- }
- return
- }
- func objectsArray(o ...tengo.Object) []tengo.Object {
- return o
- }
- func intObject(v int64) *tengo.Int {
- return &tengo.Int{Value: v}
- }
- func stringObject(v string) *tengo.String {
- return &tengo.String{Value: v}
- }
- func compiledFunction(
- numLocals, numParams int,
- insts ...[]byte,
- ) *tengo.CompiledFunction {
- return &tengo.CompiledFunction{
- Instructions: concatInsts(insts...),
- NumLocals: numLocals,
- NumParameters: numParams,
- }
- }
|