com.google.javascript.jscomp.ScopedName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of closure-compiler-unshaded Show documentation
Show all versions of closure-compiler-unshaded Show documentation
Closure Compiler is a JavaScript optimizing compiler. It parses your
JavaScript, analyzes it, removes dead code and rewrites and minimizes
what's left. It also checks syntax, variable references, and types, and
warns about common JavaScript pitfalls. It is used in many of Google's
JavaScript apps, including Gmail, Google Web Search, Google Maps, and
Google Docs.
The newest version!
/*
* Copyright 2018 The Closure Compiler Authors.
*
* 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.javascript.jscomp;
import com.google.javascript.rhino.Node;
import org.jspecify.nullness.Nullable;
/**
* A name together with a scope root node. This is suitable for use as a
* map key and is the base class for Var. Note that {@link #equals} and
* {@link #hashCode} as defined at this level, even though subclasses may
* add additional mutable state. The idea is that if two var objects have
* the same name and scope root, then they really are "the same var" and
* should be treated as interchangeable. This does mean that we need to be
* careful to not depend on any other details in situations where vars are
* stored in sets.
*/
abstract class ScopedName {
/** Returns the name as a string. */
abstract String getName();
/** Returns the root node of the scope in which this name is defined. */
abstract Node getScopeRoot();
static ScopedName of(String name, @Nullable Node scopeRoot) {
return new Simple(name, scopeRoot);
}
/** Simple implementation with no additional data or semantics. */
private static class Simple extends ScopedName {
final String name;
final Node scopeRoot;
Simple(String name, Node scopeRoot) {
this.name = name;
this.scopeRoot = scopeRoot;
}
@Override
String getName() {
return name;
}
@Override
Node getScopeRoot() {
return scopeRoot;
}
}
@Override
public final boolean equals(Object other) {
if (!(other instanceof ScopedName)) {
return false;
}
return getName().equals(((ScopedName) other).getName())
&& getScopeRoot().equals(((ScopedName) other).getScopeRoot());
}
@Override
public final int hashCode() {
// NOTE: here we avoid Object.hash because of this function is called
// frequently enough that the overhead of implicit array creation of
// a varargs function is enough that we want to avoid it.
String name = getName();
Node root = getScopeRoot();
int result = 1;
result = 31 * result + name.hashCode();
result = 31 * result + root.hashCode();
return result;
}
}