compiler/TLocalBinding.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 20 Sep 2015 12:01:42 +0100
changeset 13 97090c2baa33
parent 4 3d80069ea3e2
child 16 17a2d1d9f205
permissions -rw-r--r--
Fixes/refactoring of scopes and bindings. Fixed initialization of scopes and bindings. Make typechecker to seed types.

"{ Package: 'jv:tea/compiler' }"

"{ NameSpace: Smalltalk }"

TVariableBinding subclass:#TLocalBinding
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Languages-Tea-Compiler-Bindings'
!

!TLocalBinding methodsFor:'printing & storing'!

printOn:aStream
    aStream nextPutAll: '[L] '.
    super printOn: aStream

    "Created: / 25-08-2015 / 22:54:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!TLocalBinding methodsFor:'testing'!

isLocalBinding
    ^ true
! !