We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a649d3d commit 0efbd4dCopy full SHA for 0efbd4d
go.mod
@@ -1,5 +1,7 @@
1
module github.com/yuin/gopher-lua
2
3
+go 1.14
4
+
5
require (
6
github.com/chzyer/logex v1.1.10 // indirect
7
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
state_test.go
@@ -7,6 +7,12 @@ import (
"time"
8
)
9
10
+func TestLStateIsClosed(t *testing.T) {
11
+ L := NewState()
12
+ L.Close()
13
+ errorIfNotEqual(t, true, L.IsClosed())
14
+}
15
16
func TestCallStackOverflowWhenFixed(t *testing.T) {
17
L := NewState(Options{
18
CallStackSize: 3,
0 commit comments