Interface ExportDefaultBindingWithExportList
-
- All Superinterfaces:
Tree
- All Known Implementing Classes:
ExportDefaultBindingWithExportListImpl
public interface ExportDefaultBindingWithExportList extends Tree
This interface stands for the tail of export declaration (proposed for ES2017)export A, {B as BB, C} from 'moduleName';export
exportedDefaultIdentifier(),exportList()fromClause();
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SyntaxTokencommaToken()IdentifierTreeexportedDefaultIdentifier()NamedImportExportClauseTreeexportList()FromClauseTreefromClause()SyntaxTokensemicolonToken()-
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()
-
exportList
NamedImportExportClauseTree exportList()
-
fromClause
FromClauseTree fromClause()
-
semicolonToken
@Nullable SyntaxToken semicolonToken()
-
-