-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change introduces lambda expressions, following Python, as a shorthand for declaring anonymous functions whose body is a single expression. RELNOTES: Starlark now supports lambda (anonymous function) expressions. PiperOrigin-RevId: 346583352
- Loading branch information
1 parent
337e717
commit 50ce3f9
Showing
13 changed files
with
250 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ public enum Kind { | |
IDENTIFIER, | ||
INDEX, | ||
INT_LITERAL, | ||
LAMBDA, | ||
LIST_EXPR, | ||
SLICE, | ||
STRING_LITERAL, | ||
|
75 changes: 75 additions & 0 deletions
75
src/main/java/net/starlark/java/syntax/LambdaExpression.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
// Copyright 2020 The Bazel Authors. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
package net.starlark.java.syntax; | ||
|
||
import com.google.common.base.Preconditions; | ||
import com.google.common.collect.ImmutableList; | ||
import javax.annotation.Nullable; | ||
|
||
/** A LambdaExpression ({@code lambda params: body}) denotes an anonymous function. */ | ||
public final class LambdaExpression extends Expression { | ||
|
||
private final int lambdaOffset; // offset of 'lambda' token | ||
private final ImmutableList<Parameter> parameters; | ||
private final Expression body; | ||
|
||
// set by resolver | ||
@Nullable private Resolver.Function resolved; | ||
|
||
LambdaExpression( | ||
FileLocations locs, int lambdaOffset, ImmutableList<Parameter> parameters, Expression body) { | ||
super(locs); | ||
this.lambdaOffset = lambdaOffset; | ||
this.parameters = Preconditions.checkNotNull(parameters); | ||
this.body = Preconditions.checkNotNull(body); | ||
} | ||
|
||
public ImmutableList<Parameter> getParameters() { | ||
return parameters; | ||
} | ||
|
||
public Expression getBody() { | ||
return body; | ||
} | ||
|
||
/** Returns information about the resolved function. Set by the resolver. */ | ||
@Nullable | ||
public Resolver.Function getResolvedFunction() { | ||
return resolved; | ||
} | ||
|
||
void setResolvedFunction(Resolver.Function resolved) { | ||
this.resolved = resolved; | ||
} | ||
|
||
@Override | ||
public int getStartOffset() { | ||
return lambdaOffset; | ||
} | ||
|
||
@Override | ||
public int getEndOffset() { | ||
return body.getEndOffset(); | ||
} | ||
|
||
@Override | ||
public void accept(NodeVisitor visitor) { | ||
visitor.visit(this); | ||
} | ||
|
||
@Override | ||
public Kind kind() { | ||
return Kind.LAMBDA; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.