2
0
Эх сурвалжийг харах

Semant invoked member expression arguments. (fixes #16)

woollybah 11 жил өмнө
parent
commit
fa786d7429
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 2 1
      expr.bmx

+ 2 - 1
expr.bmx

@@ -468,6 +468,8 @@ Type TInvokeMemberExpr Extends TExpr
 
 		If Not decl.IsSemanted() decl.Semant()
 		exprType=decl.retType
+		
+		args=SemantArgs( args )
 		args=CastArgs( args,decl )
 
 		'Array $resize hack!
@@ -1488,7 +1490,6 @@ Type TIdentExpr Extends TExpr
 	End Method
 
 	Method Semant:TExpr()
-'DebugStop
 		Return SemantSet( "",Null )
 	End Method