< prev index next >

nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/FunctionCallTree.java

Print this page




  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.nashorn.api.tree;
  27 
  28 import java.util.List;
  29 
  30 /**
  31  * A tree node for a function call expression.
  32  *
  33  * For example:
  34  * <pre>
  35  *   <em>identifier</em> ( <em>arguments</em> )
  36  *
  37  *   this . <em>identifier</em> ( <em>arguments</em> )
  38  * </pre>
  39  *
  40  * @since 1.9
  41  */
  42 public interface FunctionCallTree extends ExpressionTree {
  43     /**
  44      * Returns the function being called.
  45      *
  46      * @return the function being called
  47      */
  48     ExpressionTree getFunctionSelect();
  49 
  50     /**
  51      * Returns the list of arguments being passed to this function call.
  52      *
  53      * @return the list of argument expressions
  54      */
  55     List<? extends ExpressionTree> getArguments();
  56 }


  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.nashorn.api.tree;
  27 
  28 import java.util.List;
  29 
  30 /**
  31  * A tree node for a function call expression.
  32  *
  33  * For example:
  34  * <pre>
  35  *   <em>identifier</em> ( <em>arguments</em> )
  36  *
  37  *   this . <em>identifier</em> ( <em>arguments</em> )
  38  * </pre>
  39  *
  40  * @since 9
  41  */
  42 public interface FunctionCallTree extends ExpressionTree {
  43     /**
  44      * Returns the function being called.
  45      *
  46      * @return the function being called
  47      */
  48     ExpressionTree getFunctionSelect();
  49 
  50     /**
  51      * Returns the list of arguments being passed to this function call.
  52      *
  53      * @return the list of argument expressions
  54      */
  55     List<? extends ExpressionTree> getArguments();
  56 }
< prev index next >