xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Lua/partial_statements.test (revision 3338819b08faa7f23f65fb4e67154583984ebf5c)
1# RUN: %lldb -s %s --script-language lua 2>&1 | FileCheck %s
2script
3do
4local a = 123
5print(a)
6end
7# CHECK: 123
8str = 'hello there!'
9function callme()
10print(str)
11end
12callme()
13# CHECK: hello there!
14# CHECK-NOT: error
15