org.jetbrains.kotlin.psi
Class JetFunctionLiteralExpression

java.lang.Object
  extended by com.intellij.openapi.util.UserDataHolderBase
      extended by com.intellij.psi.impl.ElementBase
          extended by com.intellij.psi.impl.PsiElementBase
              extended by com.intellij.extapi.psi.ASTDelegatePsiElement
                  extended by com.intellij.extapi.psi.ASTWrapperPsiElement
                      extended by org.jetbrains.kotlin.psi.JetElementImpl
                          extended by org.jetbrains.kotlin.psi.JetExpressionImpl
                              extended by org.jetbrains.kotlin.psi.JetFunctionLiteralExpression
All Implemented Interfaces:
com.intellij.navigation.NavigationItem, com.intellij.openapi.util.Iconable, com.intellij.openapi.util.UserDataHolder, com.intellij.openapi.util.UserDataHolderEx, com.intellij.pom.Navigatable, com.intellij.psi.NavigatablePsiElement, com.intellij.psi.PsiElement, java.lang.Cloneable, JetElement, JetExpression

public class JetFunctionLiteralExpression
extends JetExpressionImpl


Nested Class Summary
 
Nested classes/interfaces inherited from interface com.intellij.openapi.util.Iconable
com.intellij.openapi.util.Iconable.IconFlags, com.intellij.openapi.util.Iconable.LastComputedIcon
 
Field Summary
 
Fields inherited from class com.intellij.psi.impl.ElementBase
FLAGS_LOCKED, ICON_PLACEHOLDER
 
Fields inherited from class com.intellij.openapi.util.UserDataHolderBase
COPYABLE_USER_MAP_KEY
 
Fields inherited from interface org.jetbrains.kotlin.psi.JetExpression
ARRAY_FACTORY, EMPTY_ARRAY
 
Fields inherited from interface com.intellij.openapi.util.Iconable
ICON_FLAG_CLOSED, ICON_FLAG_OPEN, ICON_FLAG_READ_STATUS, ICON_FLAG_VISIBILITY
 
Fields inherited from interface com.intellij.navigation.NavigationItem
EMPTY_NAVIGATION_ITEM_ARRAY
 
Constructor Summary
JetFunctionLiteralExpression(com.intellij.lang.ASTNode node)
           
 
Method Summary
<R,D> R
accept(JetVisitor<R,D> visitor, D data)
           
 JetElement asElement()
           
 JetBlockExpression getBodyExpression()
           
 JetFunctionLiteral getFunctionLiteral()
           
 com.intellij.lang.ASTNode getLeftCurlyBrace()
           
 com.intellij.lang.ASTNode getRightCurlyBrace()
           
 java.util.List<JetParameter> getValueParameters()
           
 boolean hasBlockBody()
           
 boolean hasDeclaredReturnType()
           
 
Methods inherited from class org.jetbrains.kotlin.psi.JetExpressionImpl
findExpressionUnder, replace
 
Methods inherited from class org.jetbrains.kotlin.psi.JetElementImpl
accept, acceptChildren, getContainingJetFile, getLanguage, getReference, getReferences, toString
 
Methods inherited from class com.intellij.extapi.psi.ASTWrapperPsiElement
getNode, getParent
 
Methods inherited from class com.intellij.extapi.psi.ASTDelegatePsiElement
add, addAfter, addBefore, addInternal, addRange, addRangeAfter, addRangeBefore, checkAdd, checkDelete, copy, delete, deleteChildInternal, deleteChildRange, findChildByFilter, findChildByType, findChildByType, findChildrenByType, findChildrenByType, findChildrenByType, findChildrenByType, findElementAt, findLastChildByType, findNotNullChildByFilter, findNotNullChildByType, findNotNullChildByType, getChildren, getContainingFile, getCopyableUserData, getFirstChild, getLastChild, getManager, getNextSibling, getPrevSibling, getStartOffsetInParent, getText, getTextLength, getTextOffset, getTextRange, putCopyableUserData, replaceChildInternal, subtreeChanged, textContains, textToCharArray
 
Methods inherited from class com.intellij.psi.impl.PsiElementBase
acceptChildren, canNavigate, canNavigateToSource, findChildByClass, findChildrenByClass, findNotNullChildByClass, findReferenceAt, getContext, getName, getNavigationElement, getOriginalElement, getPresentation, getProject, getResolveScope, getUseScope, isEquivalentTo, isPhysical, isValid, isWritable, navigate, notNullChild, processDeclarations, textMatches, textMatches
 
Methods inherited from class com.intellij.psi.impl.ElementBase
buildRowIcon, computeBaseIcon, createLayeredIcon, getAdjustedBaseIcon, getBaseIcon, getElementIcon, getIcon, iconWithVisibilityIfNeeded, isNativeFileType, isVisibilitySupported, overlayIcons, registerIconLayer, transformFlags
 
Methods inherited from class com.intellij.openapi.util.UserDataHolderBase
changeUserMap, clearUserData, clone, copyCopyableDataTo, copyUserDataTo, getUserData, getUserDataString, getUserMap, isUserDataEmpty, putUserData, putUserDataIfAbsent, replace, setUserMap
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.jetbrains.kotlin.psi.JetElement
acceptChildren, getContainingJetFile
 
Methods inherited from interface com.intellij.psi.PsiElement
accept, acceptChildren, add, addAfter, addBefore, addRange, addRangeAfter, addRangeBefore, checkAdd, checkDelete, copy, delete, deleteChildRange, findElementAt, findReferenceAt, getChildren, getContainingFile, getContext, getCopyableUserData, getFirstChild, getLanguage, getLastChild, getManager, getNavigationElement, getNextSibling, getNode, getOriginalElement, getParent, getPrevSibling, getProject, getReference, getReferences, getResolveScope, getStartOffsetInParent, getText, getTextLength, getTextOffset, getTextRange, getUseScope, isEquivalentTo, isPhysical, isValid, isWritable, processDeclarations, putCopyableUserData, textContains, textMatches, textMatches, textToCharArray, toString
 
Methods inherited from interface com.intellij.openapi.util.UserDataHolder
getUserData, putUserData
 
Methods inherited from interface com.intellij.openapi.util.Iconable
getIcon
 
Methods inherited from interface com.intellij.navigation.NavigationItem
getName, getPresentation
 
Methods inherited from interface com.intellij.pom.Navigatable
canNavigate, canNavigateToSource, navigate
 

Constructor Detail

JetFunctionLiteralExpression

public JetFunctionLiteralExpression(@NotNull
                                    com.intellij.lang.ASTNode node)
Method Detail

accept

public <R,D> R accept(@NotNull
                      JetVisitor<R,D> visitor,
                      D data)
Specified by:
accept in interface JetElement
Specified by:
accept in interface JetExpression
Overrides:
accept in class JetExpressionImpl

getFunctionLiteral

@NotNull
public JetFunctionLiteral getFunctionLiteral()

getValueParameters

@NotNull
public java.util.List<JetParameter> getValueParameters()

getBodyExpression

public JetBlockExpression getBodyExpression()

hasBlockBody

public boolean hasBlockBody()

hasDeclaredReturnType

public boolean hasDeclaredReturnType()

asElement

@NotNull
public JetElement asElement()

getLeftCurlyBrace

@NotNull
public com.intellij.lang.ASTNode getLeftCurlyBrace()

getRightCurlyBrace

@Nullable
public com.intellij.lang.ASTNode getRightCurlyBrace()