@@ -188,9 +188,9 @@ signature module StateConfigSig {
188188signature int explorationLimitSig ( ) ;
189189
190190/**
191- * The output of a data flow computation.
191+ * The output of a global data flow computation.
192192 */
193- signature module DataFlowSig {
193+ signature module GlobalFlowSig {
194194 /**
195195 * A `Node` augmented with a call context (except for sinks) and an access path.
196196 * Only those `PathNode`s that are reachable from a source, and which can reach a sink, are generated.
@@ -224,7 +224,7 @@ signature module DataFlowSig {
224224/**
225225 * Constructs a standard data flow computation.
226226 */
227- module Global< ConfigSig Config> implements DataFlowSig {
227+ module Global< ConfigSig Config> implements GlobalFlowSig {
228228 private module C implements FullStateConfigSig {
229229 import DefaultState< Config >
230230 import Config
@@ -234,14 +234,14 @@ module Global<ConfigSig Config> implements DataFlowSig {
234234}
235235
236236/** DEPRECATED: Use `Global` instead. */
237- deprecated module Make< ConfigSig Config> implements DataFlowSig {
237+ deprecated module Make< ConfigSig Config> implements GlobalFlowSig {
238238 import Global< Config >
239239}
240240
241241/**
242242 * Constructs a data flow computation using flow state.
243243 */
244- module GlobalWithState< StateConfigSig Config> implements DataFlowSig {
244+ module GlobalWithState< StateConfigSig Config> implements GlobalFlowSig {
245245 private module C implements FullStateConfigSig {
246246 import Config
247247 }
@@ -250,7 +250,7 @@ module GlobalWithState<StateConfigSig Config> implements DataFlowSig {
250250}
251251
252252/** DEPRECATED: Use `GlobalWithState` instead. */
253- deprecated module MakeWithState< StateConfigSig Config> implements DataFlowSig {
253+ deprecated module MakeWithState< StateConfigSig Config> implements GlobalFlowSig {
254254 import GlobalWithState< Config >
255255}
256256
0 commit comments