blob: a314694c52df11b6b2a2d114f1379c37a41b6f11 [file] [log] [blame]
// Copyright 2014 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 com.google.devtools.build.lib.syntax;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableList;
import javax.annotation.Nullable;
/** Syntax node for a 'def' statement, which defines a function. */
public final class DefStatement extends Statement {
private final int defOffset;
private final Identifier identifier;
private final ImmutableList<Statement> body; // non-empty if well formed
private final ImmutableList<Parameter> parameters;
// set by resolver
@Nullable Resolver.Function resolved;
DefStatement(
FileLocations locs,
int defOffset,
Identifier identifier,
ImmutableList<Parameter> parameters,
ImmutableList<Statement> body) {
super(locs);
this.defOffset = defOffset;
this.identifier = identifier;
this.parameters = Preconditions.checkNotNull(parameters);
this.body = Preconditions.checkNotNull(body);
}
@Override
public String toString() {
// "def f(...): \n"
StringBuilder buf = new StringBuilder();
new NodePrinter(buf).printDefSignature(this);
buf.append(" ...\n");
return buf.toString();
}
public Identifier getIdentifier() {
return identifier;
}
public ImmutableList<Statement> getBody() {
return body;
}
public ImmutableList<Parameter> getParameters() {
return parameters;
}
@Override
public int getStartOffset() {
return defOffset;
}
@Override
public int getEndOffset() {
return body.isEmpty()
? identifier.getEndOffset() // wrong, but tree is ill formed
: body.get(body.size() - 1).getEndOffset();
}
@Override
public void accept(NodeVisitor visitor) {
visitor.visit(this);
}
@Override
public Kind kind() {
return Kind.DEF;
}
}