软件包  jdk.nashorn.api.tree

Interface ForInLoopTree

  • All Superinterfaces:
    LoopTreeStatementTree


    public interface ForInLoopTree
    extends LoopTree
    for..in语句的树节点例如:
      for ( variable in expression )
           statement 
    从以下版本开始:
    9
    • 方法详细信息

      • getVariable

        ExpressionTree getVariable​()
        在左手边表达。
        结果
        左手边表达
      • getExpression

        ExpressionTree getExpression​()
        对象或数组的属性被迭代。
        结果
        对象或数组表达式被迭代
      • isForEach

        boolean isForEach​()
        如果这是一个for..each..in语句返回。
        结果
        如果这是一个for..each..in语句,则为true