ParseNode.st
changeset 2402 da3d16a4193d
parent 2401 3bfe65bdcc64
child 2403 79c95fae81e8
equal deleted inserted replaced
2401:3bfe65bdcc64 2402:da3d16a4193d
   431 
   431 
   432 isInnerJavaScriptBlock
   432 isInnerJavaScriptBlock
   433     ^ false
   433     ^ false
   434 !
   434 !
   435 
   435 
       
   436 isJavaScriptArrayAccess
       
   437     "return true, if this is a node for a javascript array reference i.e. expr[]"
       
   438 
       
   439     ^ false
       
   440 
       
   441     "Created: / 05-07-2010 / 14:04:27 / cg"
       
   442 !
       
   443 
   436 isJavaScriptBlock
   444 isJavaScriptBlock
   437     "return true, if this is a node for a javascript block"
   445     "return true, if this is a node for a javascript block"
   438 
   446 
   439     ^ false
   447     ^ false
   440 
   448 
   522 ! !
   530 ! !
   523 
   531 
   524 !ParseNode class methodsFor:'documentation'!
   532 !ParseNode class methodsFor:'documentation'!
   525 
   533 
   526 version
   534 version
   527     ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.54 2010-06-09 00:02:28 cg Exp $'
   535     ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.55 2010-07-05 12:04:42 cg Exp $'
   528 !
   536 !
   529 
   537 
   530 version_CVS
   538 version_CVS
   531     ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.54 2010-06-09 00:02:28 cg Exp $'
   539     ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.55 2010-07-05 12:04:42 cg Exp $'
   532 ! !
   540 ! !