@@ -99,7 +99,7 @@ module IO {
9999 }
100100
101101 /**
102- * A `DataFlow::MethodCallNode ` that reads data using the `IO` class. For example,
102+ * A `DataFlow::CallNode ` that reads data using the `IO` class. For example,
103103 * the `IO.read call in:
104104 *
105105 * ```rb
@@ -112,7 +112,7 @@ module IO {
112112 * filesystem. For working with filesystem accesses specifically, see
113113 * `IOFileReader` or the `FileSystemReadAccess` concept.
114114 */
115- class IOReader extends DataFlow:: MethodCallNode {
115+ class IOReader extends DataFlow:: CallNode {
116116 private boolean classMethodCall ;
117117 private string api ;
118118
@@ -149,7 +149,7 @@ module IO {
149149 }
150150
151151 /**
152- * A `DataFlow::MethodCallNode ` that reads data from the filesystem using the `IO`
152+ * A `DataFlow::CallNode ` that reads data from the filesystem using the `IO`
153153 * class. For example, the `IO.read call in:
154154 *
155155 * ```rb
@@ -217,7 +217,7 @@ module File {
217217 /**
218218 * A call to a `File` method that may return one or more filenames.
219219 */
220- class FileModuleFilenameSource extends FileNameSource , DataFlow:: MethodCallNode {
220+ class FileModuleFilenameSource extends FileNameSource , DataFlow:: CallNode {
221221 FileModuleFilenameSource ( ) {
222222 // Class methods
223223 this =
@@ -236,7 +236,7 @@ module File {
236236 }
237237
238238 private class FileModulePermissionModification extends FileSystemPermissionModification:: Range ,
239- DataFlow:: MethodCallNode {
239+ DataFlow:: CallNode {
240240 private DataFlow:: Node permissionArg ;
241241
242242 FileModulePermissionModification ( ) {
@@ -319,7 +319,7 @@ module FileUtils {
319319 }
320320
321321 private class FileUtilsPermissionModification extends FileSystemPermissionModification:: Range ,
322- DataFlow:: MethodCallNode {
322+ DataFlow:: CallNode {
323323 private DataFlow:: Node permissionArg ;
324324
325325 FileUtilsPermissionModification ( ) {
0 commit comments