compiler/TInlineAssemblyEndToken.st
changeset 14 fa42d3f1a578
parent 13 97090c2baa33
child 15 10a95d798b36
equal deleted inserted replaced
13:97090c2baa33 14:fa42d3f1a578
     1 "{ Package: 'jv:tea/compiler' }"
       
     2 
       
     3 "{ NameSpace: Smalltalk }"
       
     4 
       
     5 RBToken subclass:#TInlineAssemblyEndToken
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'Languages-Tea-Compiler-AST'
       
    10 !
       
    11 
       
    12 !TInlineAssemblyEndToken methodsFor:'testing'!
       
    13 
       
    14 isTInlineAssemblyEnd
       
    15     ^ true
       
    16 
       
    17     "Created: / 02-09-2015 / 06:20:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    18 ! !
       
    19