Class LambdaExpr

java.lang.Object
com.google.api.generator.engine.ast.LambdaExpr
All Implemented Interfaces:
AstNode, Expr

public abstract class LambdaExpr extends Object implements Expr
  • Constructor Details

    • LambdaExpr

      public LambdaExpr()
  • Method Details

    • type

      public TypeNode type()
      Specified by:
      type in interface Expr
    • arguments

      public abstract com.google.common.collect.ImmutableList<VariableExpr> arguments()
    • returnExpr

      public abstract ReturnExpr returnExpr()
    • body

      public abstract com.google.common.collect.ImmutableList<Statement> body()
    • accept

      public void accept(AstNodeVisitor visitor)
      Description copied from interface: AstNode
      Writes the syntatically-correct Java code representation of this node.
      Specified by:
      accept in interface AstNode
      Specified by:
      accept in interface Expr
    • builder

      public static LambdaExpr.Builder builder()