diff core/src/luan/impl/SetLocalVar.java @ 594:e91e476186c7

theme indentation
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 03 Sep 2015 12:23:53 -0600
parents 3dcb0f9bee82
children
line wrap: on
line diff
--- a/core/src/luan/impl/SetLocalVar.java	Mon Aug 31 10:16:57 2015 -0600
+++ b/core/src/luan/impl/SetLocalVar.java	Thu Sep 03 12:23:53 2015 -0600
@@ -5,6 +5,7 @@
 	private final int index;
 
 	SetLocalVar(int index) {
+		if( index < 0 )  throw new RuntimeException();
 		this.index = index;
 	}