MCPcopy Index your code
hub / github.com/bazelbuild/bazel / create

Method create

src/main/java/net/starlark/java/eval/Mutability.java:120–122  ·  view source on GitHub ↗

Creates a Mutability. @param annotation a list of objects whose toString representations are joined with spaces to yield the annotation, an internal name describing the purpose of this Mutability.

(Object... annotation)

Source from the content-addressed store, hash-verified

118 * yield the annotation, an internal name describing the purpose of this Mutability.
119 */
120 public static Mutability create(Object... annotation) {
121 return new Mutability(annotation, /*allowsUnsafeShallowFreeze=*/ false);
122 }
123
124 /**
125 * Creates a {@code Mutability} whose objects can be individually frozen; see docstrings for

Calls

no outgoing calls