diff options
author | dgp <dgp@users.sourceforge.net> | 2016-09-08 14:34:35 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2016-09-08 14:34:35 (GMT) |
commit | 7eac217cbcdf7d0764c8fbc0a3c09bdd31fbc4a4 (patch) | |
tree | 941ec84a540d886ab16d256cc6c408416dd860b0 /tests/info.test | |
parent | fa105712c19ab4f84d85f6e33cb51a85e2ad259f (diff) | |
parent | 313d238fb894ff0775f40ec5aee77627742a3b1b (diff) | |
download | tcl-7eac217cbcdf7d0764c8fbc0a3c09bdd31fbc4a4.zip tcl-7eac217cbcdf7d0764c8fbc0a3c09bdd31fbc4a4.tar.gz tcl-7eac217cbcdf7d0764c8fbc0a3c09bdd31fbc4a4.tar.bz2 |
merge bytecode init reworking
Diffstat (limited to 'tests/info.test')
-rw-r--r-- | tests/info.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/info.test b/tests/info.test index 3057dd2..60b9e66 100644 --- a/tests/info.test +++ b/tests/info.test @@ -2099,7 +2099,7 @@ proc foo::bar {} { foreach {*}{ x y {set res [info frame 0]} - } + } return $res } test info-33.13 {{*}, literal, simple, bytecompiled} -body { @@ -2114,7 +2114,7 @@ proc foo::bar {} { if {*}{ {[return [info frame 0]]} {} - } + } } test info-33.14 {{*}, literal, simple, bytecompiled} -body { reduce [foo::bar] @@ -2128,7 +2128,7 @@ proc foo::bar {} { if 0 {*}{ {} else {return [info frame 0]} - } + } } test info-33.15 {{*}, literal, simple, bytecompiled} -body { reduce [foo::bar] @@ -2229,7 +2229,7 @@ namespace eval foo {} proc foo::bar {} { try {*}{ {set res [info frame 0]} - } + } return $res } test info-33.23 {{*}, literal, simple, bytecompiled} -body { |