diff -r fa42d3f1a578 -r 10a95d798b36 compiler/TValueBinding.st --- a/compiler/TValueBinding.st Tue Sep 22 17:43:38 2015 +0100 +++ b/compiler/TValueBinding.st Wed Sep 23 22:21:44 2015 +0100 @@ -33,3 +33,17 @@ "Created: / 31-08-2015 / 11:49:14 / Jan Vrany " ! ! +!TValueBinding methodsFor:'accesssing - llvm'! + +llvmValue + ^ self propertyAt: #llvmValue ifAbsent:[ nil ] + + "Created: / 23-09-2015 / 21:14:27 / Jan Vrany " +! + +llvmValue: anLLVMValue + self propertyAt: #llvmValue put: anLLVMValue + + "Created: / 23-09-2015 / 21:14:10 / Jan Vrany " +! ! +