Interface ExportDefaultBindingWithNameSpaceExport
-
- All Superinterfaces:
Tree
- All Known Implementing Classes:
ExportDefaultBindingWithNameSpaceExportImpl
public interface ExportDefaultBindingWithNameSpaceExport extends Tree
This interface stands for the tail of export declaration (proposed for ES2017)export A, * as B from 'moduleName';
export
exportedDefaultIdentifier(), * assynonymIdentifier()fromClause();
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SyntaxTokenasToken()SyntaxTokencommaToken()IdentifierTreeexportedDefaultIdentifier()FromClauseTreefromClause()SyntaxTokensemicolonToken()SyntaxTokenstarToken()IdentifierTreesynonymIdentifier()-
Methods inherited from interface org.sonar.plugins.javascript.api.tree.Tree
accept, childrenStream, descendants, firstToken, is, isAncestorOf, lastToken, parent
-
-
-
-
Method Detail
-
exportedDefaultIdentifier
IdentifierTree exportedDefaultIdentifier()
-
commaToken
SyntaxToken commaToken()
-
starToken
SyntaxToken starToken()
-
asToken
SyntaxToken asToken()
-
synonymIdentifier
IdentifierTree synonymIdentifier()
-
fromClause
FromClauseTree fromClause()
-
semicolonToken
@Nullable SyntaxToken semicolonToken()
-
-