Browse Source

Semant invoked member expression arguments. (fixes #16)

woollybah 11 years ago
parent
commit
fa786d7429
1 changed files with 2 additions and 1 deletions
  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