@@ -188,9 +188,9 @@ signature module StateConfigSig {
188
188
signature int explorationLimitSig ( ) ;
189
189
190
190
/**
191
- * The output of a data flow computation.
191
+ * The output of a global data flow computation.
192
192
*/
193
- signature module DataFlowSig {
193
+ signature module GlobalFlowSig {
194
194
/**
195
195
* A `Node` augmented with a call context (except for sinks) and an access path.
196
196
* 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 {
224
224
/**
225
225
* Constructs a standard data flow computation.
226
226
*/
227
- module Global< ConfigSig Config> implements DataFlowSig {
227
+ module Global< ConfigSig Config> implements GlobalFlowSig {
228
228
private module C implements FullStateConfigSig {
229
229
import DefaultState< Config >
230
230
import Config
@@ -234,14 +234,14 @@ module Global<ConfigSig Config> implements DataFlowSig {
234
234
}
235
235
236
236
/** DEPRECATED: Use `Global` instead. */
237
- deprecated module Make< ConfigSig Config> implements DataFlowSig {
237
+ deprecated module Make< ConfigSig Config> implements GlobalFlowSig {
238
238
import Global< Config >
239
239
}
240
240
241
241
/**
242
242
* Constructs a data flow computation using flow state.
243
243
*/
244
- module GlobalWithState< StateConfigSig Config> implements DataFlowSig {
244
+ module GlobalWithState< StateConfigSig Config> implements GlobalFlowSig {
245
245
private module C implements FullStateConfigSig {
246
246
import Config
247
247
}
@@ -250,7 +250,7 @@ module GlobalWithState<StateConfigSig Config> implements DataFlowSig {
250
250
}
251
251
252
252
/** DEPRECATED: Use `GlobalWithState` instead. */
253
- deprecated module MakeWithState< StateConfigSig Config> implements DataFlowSig {
253
+ deprecated module MakeWithState< StateConfigSig Config> implements GlobalFlowSig {
254
254
import GlobalWithState< Config >
255
255
}
256
256
0 commit comments