blob: 7e721bdcdf2dc57a438e5b45a3aa7fd58e0e0110 [file] [log] [blame]
// 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 com.google.devtools.build.lib.packages;
import com.google.devtools.build.docgen.annot.DocCategory;
import net.starlark.java.annot.StarlarkBuiltin;
import net.starlark.java.eval.Printer;
import net.starlark.java.eval.StarlarkValue;
// TODO(#11437): Factor an API out into skylarkbuildapi, for stardoc's benefit. Otherwise, stardoc
// can't run on @_builtins bzls.
/** The {@code _internal} Starlark object, visible only to {@code @_builtins} .bzls. */
@StarlarkBuiltin(
name = "_internal",
category = DocCategory.BUILTIN,
documented = false,
doc =
"A module accessible only to @_builtins .bzls, that permits access to the original "
+ "(uninjected) native builtins, as well as internal-only symbols not accessible to "
+ "users.")
public class InternalModule implements StarlarkValue {
// TODO(#11437): Can't use a singleton once we're re-exporting fields of the native object.
public static final InternalModule INSTANCE = new InternalModule();
private InternalModule() {}
@Override
public void repr(Printer printer) {
printer.append("<_internal module>");
}
@Override
public boolean isImmutable() {
return true;
}
}