compiler/TInlineAssemblyBeginToken.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 20 Sep 2015 12:01:42 +0100
changeset 13 97090c2baa33
parent 12 d716a8181fc1
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 }"

RBToken subclass:#TInlineAssemblyBeginToken
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Languages-Tea-Compiler-AST'
!


!TInlineAssemblyBeginToken methodsFor:'testing'!

isTInlineAssemblyBegin
    ^ true

    "Created: / 02-09-2015 / 06:20:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!TInlineAssemblyBeginToken class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !