MCPcopy Create free account
hub / github.com/Hiro420/NikkeTools / isSplitBy

Method isSplitBy

UnLuac/src/unluac/decompile/Declaration.java:43–49  ·  view source on GitHub ↗
(int line, int begin, int end)

Source from the content-addressed store, hash-verified

41 }
42
43 public boolean isSplitBy(int line, int begin, int end) {
44 int scopeEnd = end - 1;
45 return this.begin >= line && this.begin < begin
46 || this.end >= line && this.end < begin
47 || this.begin < begin && this.end >= begin && this.end < scopeEnd
48 || this.begin >= begin && this.begin <= scopeEnd && this.end > scopeEnd;
49 }
50
51}

Callers 1

splits_declMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected