We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aa5552 commit 5514a53Copy full SHA for 5514a53
rascal-textmate-core/src/main/rascal/util/ListUtil.rsc
@@ -32,4 +32,4 @@ list[&T] dupLast(list[&T] l) = reverse(dup(reverse(l))); // TODO: Optimize/avoid
32
}
33
34
bool isStrictPrefix(list[&T] l1, list[&T] l2)
35
- = size(l1) < size(l2) && l1 == l2[..size(l2)];
+ = size(l1) < size(l2) && l1 == l2[..size(l1)];
0 commit comments