MCPcopy Index your code
hub / github.com/lutzroeder/netron / hasAnyAliasInfo

Method hasAnyAliasInfo

source/python.js:6546–6558  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6544 this._alias_kind = v;
6545 }
6546 hasAnyAliasInfo() {
6547 for (const arg of this.arguments) {
6548 if (arg.alias_info !== null) {
6549 return true;
6550 }
6551 }
6552 for (const ret of this.returns) {
6553 if (ret.alias_info !== null) {
6554 return true;
6555 }
6556 }
6557 return false;
6558 }
6559 is_mutable() {
6560 return this.arguments.some((arg) => {
6561 const aliasInfo = arg.alias_info;

Callers 1

aliasAnalysisKindMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected