comparison src/luan/interp/Block.java @ 21:c93d8c781853

add functions git-svn-id: https://luan-java.googlecode.com/svn/trunk@22 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Tue, 04 Dec 2012 09:16:03 +0000
parents 09d41f7490a8
children 2446c1755d9b
comparison
equal deleted inserted replaced
20:d85510d92eee 21:c93d8c781853
3 import luan.LuaState; 3 import luan.LuaState;
4 import luan.LuaException; 4 import luan.LuaException;
5 5
6 6
7 final class Block implements Stmt { 7 final class Block implements Stmt {
8 private final Stmt[] stmts; 8 final Stmt[] stmts;
9 private final int stackStart; 9 private final int stackStart;
10 private final int stackEnd; 10 private final int stackEnd;
11 11
12 Block(Stmt[] stmts,int stackStart,int stackEnd) { 12 Block(Stmt[] stmts,int stackStart,int stackEnd) {
13 this.stmts = stmts; 13 this.stmts = stmts;