compiler/TBinding.st
changeset 3 97ee341d3e9f
child 4 3d80069ea3e2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compiler/TBinding.st	Wed Aug 26 07:51:18 2015 +0100
@@ -0,0 +1,19 @@
+"{ Package: 'jv:tea/compiler' }"
+
+"{ NameSpace: Smalltalk }"
+
+Object subclass:#TBinding
+	instanceVariableNames:'type'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Languages-Tea-Compiler-Bindings'
+!
+
+!TBinding methodsFor:'accessing'!
+
+type
+    ^ type
+
+    "Modified: / 28-08-2015 / 06:28:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+