Mark various files as overlay[local]

This commit is contained in:
Owen Mansel-Chan
2026-03-09 17:29:17 +00:00
parent c56feb7644
commit f32f85399a
28 changed files with 28 additions and 28 deletions

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with AST nodes.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,5 +1,5 @@
/** Provides classes for working with architectures. */
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with code comments.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with declarations.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,5 +1,5 @@
/** Provides classes for working with errors and warnings recorded during extraction. */
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,5 +1,5 @@
/** Provides classes for working with Go frontend errors recorded during extraction. */
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with expressions.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,5 +1,5 @@
/** Provides classes for working with files and folders. */
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with go.mod files.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,5 +1,5 @@
/** Provides classes for working with HTML documents. */
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,5 +1,5 @@
/** Provides classes for working with locations and program elements that have locations. */
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with packages.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides queries to pretty-print a Go AST as a graph.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with scopes and declared objects.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with statements.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with Go types.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,5 +1,5 @@
/** This module provides general utility classes and predicates. */
overlay[local?]
overlay[local]
module;
/**

View File

@@ -1,5 +1,5 @@
/** Provides the `VariableWithFields` class, for working with variables with a chain of field or element accesses chained to it. */
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,5 +1,5 @@
/** Provides a class for generated files. */
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with basic blocks.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with a CFG-based program representation.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -3,7 +3,7 @@
*
* Provides predicates for building intra-procedural CFGs.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -9,7 +9,7 @@
* Each instruction is also a control-flow node, but there are control-flow nodes that are not
* instructions (synthetic entry and exit nodes, as well as no-op skip nodes).
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -2,7 +2,7 @@
* Provides QL classes for indicating data flow through a function parameter, return value,
* or receiver.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -29,7 +29,7 @@
* common reason for this is that the analysis cannot prove that there
* are no side-effects that might cause the computed value to change.
*/
overlay[local?]
overlay[local]
module;
/*

View File

@@ -1,7 +1,7 @@
/**
* Provides a class for representing and reasoning about properties of data-flow nodes.
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -1,7 +1,7 @@
/**
* Provides classes for working with static single assignment form (SSA).
*/
overlay[local?]
overlay[local]
module;
import go

View File

@@ -3,7 +3,7 @@
*
* Provides predicates for constructing an SSA representation for functions.
*/
overlay[local?]
overlay[local]
module;
import go