Skip to content

Commit a80a68b

Browse files
Core: Fixed type error on null (#3057)
1 parent 8daebb4 commit a80a68b

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

components/prism-core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ var Prism = (function (_self) {
947947

948948
if (greedy) {
949949
match = matchPattern(pattern, pos, text, lookbehind);
950-
if (!match) {
950+
if (!match || match.index >= text.length) {
951951
break;
952952
}
953953

components/prism-core.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/prism-core.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,7 @@ <h1 class="page-title">prism-core.js</h1>
10001000

10011001
if (greedy) {
10021002
match = matchPattern(pattern, pos, text, lookbehind);
1003-
if (!match) {
1003+
if (!match || match.index >= text.length) {
10041004
break;
10051005
}
10061006

prism.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ var Prism = (function (_self) {
952952

953953
if (greedy) {
954954
match = matchPattern(pattern, pos, text, lookbehind);
955-
if (!match) {
955+
if (!match || match.index >= text.length) {
956956
break;
957957
}
958958

tests/core/greedy.js

+14
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,18 @@ describe('Greedy matching', function () {
105105
});
106106
});
107107

108+
it('issue3052', function () {
109+
// If a greedy pattern creates an empty token at the end of the string, then this token should be discarded
110+
testTokens({
111+
grammar: {
112+
'oh-no': {
113+
pattern: /$/,
114+
greedy: true
115+
}
116+
},
117+
code: 'foo',
118+
expected: ['foo']
119+
});
120+
});
121+
108122
});

0 commit comments

Comments
 (0)