ada.editor/src/org/netbeans/modules/ada/editor/ast/nodes/MethodInvocation.java
branchrelease68
changeset 16367 d2820c029d3a
parent 14695 5d5ca7c229b6
     1.1 --- a/ada.editor/src/org/netbeans/modules/ada/editor/ast/nodes/MethodInvocation.java	Thu Dec 25 02:49:48 2008 +0100
     1.2 +++ b/ada.editor/src/org/netbeans/modules/ada/editor/ast/nodes/MethodInvocation.java	Sun Aug 22 23:37:11 2010 +0200
     1.3 @@ -53,7 +53,7 @@
     1.4      private MethodName name;
     1.5      private final ArrayList<Expression> parameters = new ArrayList<Expression>();
     1.6  
     1.7 -    private MethodInvocation(int start, int end, VariableBase dispatcher, MethodName methodName, Expression[] parameters) {
     1.8 +    private MethodInvocation(int start, int end, NameBase dispatcher, MethodName methodName, Expression[] parameters) {
     1.9          super(start, end, dispatcher);
    1.10          this.name = methodName;
    1.11          for (Expression expression : parameters) {
    1.12 @@ -61,7 +61,7 @@
    1.13          }
    1.14      }
    1.15  
    1.16 -    public MethodInvocation(int start, int end, VariableBase dispatcher, MethodName methodName, List<Expression> parameters) {
    1.17 +    public MethodInvocation(int start, int end, NameBase dispatcher, MethodName methodName, List<Expression> parameters) {
    1.18          this(start, end, dispatcher, methodName, parameters == null ? null : (Expression[]) parameters.toArray(new Expression[parameters.size()]));
    1.19      }
    1.20