Uses of Interface
jdk.nashorn.api.tree.TreeVisitor
-
Packages that use TreeVisitor 软件包 描述 jdk.nashorn.api.tree Nashorn解析器API提供了将ECMAScript源代码表示为抽象语法树(AST)和解析器来解析ECMAScript源脚本的接口。 -
-
Uses of TreeVisitor in jdk.nashorn.api.tree
Classes in jdk.nashorn.api.tree that implement TreeVisitor Modifier and Type Class 描述 class
SimpleTreeVisitorES5_1<R,P>
用于ECMAScript版本5.1的TreeVisitor的简单实现。class
SimpleTreeVisitorES6<R,P>
对于ECMAScript版本6的TreeVisitor的简单实现。Methods in jdk.nashorn.api.tree with parameters of type TreeVisitor Modifier and Type 方法 描述 <R,D> R
Tree. accept(TreeVisitor<R,D> visitor, D data)
用于实现访问者模式的接受方法。
-