#FEATURE by cg expecco_18_2_0 expecco_18_2_1
authorClaus Gittinger <cg@exept.de>
Thu, 13 Dec 2018 23:02:57 +0100
changeset 4322 570a72d914a3
parent 4321 53f494b890c1
child 4323 8f45288cf559
#FEATURE by cg class: ParseNode added: #isFunctionCallNode
ParseNode.st
--- a/ParseNode.st	Wed Dec 12 19:11:17 2018 +0100
+++ b/ParseNode.st	Thu Dec 13 23:02:57 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -53,7 +55,6 @@
     ^ (self basicNew) type:t
 ! !
 
-
 !ParseNode methodsFor:'accessing'!
 
 enclosingBlock
@@ -570,6 +571,12 @@
     ^ false
 !
 
+isFunctionCallNode
+    ^ false
+
+    "Created: / 13-12-2018 / 22:35:28 / Claus Gittinger"
+!
+
 isGlobal
     "return true, if this is a node for a global variable"