Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 16f105e

Browse files
committed
Changed to more fitting replacement
1 parent d43bb34 commit 16f105e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/LiveDevelopment/Inspector/Inspector.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3244,7 +3244,7 @@
32443244
{ "name": "script", "optional": true, "type": "string", "description": "Regular expression defining the scripts to ignore while stepping." }
32453245
],
32463246
"hidden": true,
3247-
"description": "Makes backend skip steps in the sources with names matching given pattern. VM will try leave block-listed scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful."
3247+
"description": "Makes backend skip steps in the sources with names matching given pattern. VM will try leave blocklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful."
32483248
}
32493249
],
32503250
"events": [

src/LiveDevelopment/Inspector/inspector.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ <h3><a href="#Debugger">Debugger</a></h3>
386386
<li><a href='#Debugger.setVariableValue'>Debugger.setVariableValue</a>: Changes value of variable in a callframe or a closure. Either callframe or function must be specified. Object-based scopes are not supported and must be mutated manually.</li>
387387
<li><a href='#Debugger.getStepInPositions'>Debugger.getStepInPositions</a>: Lists all positions where step-in is possible for a current statement in a specified call frame</li>
388388
<li><a href='#Debugger.getBacktrace'>Debugger.getBacktrace</a>: Returns call stack including variables changed since VM was paused. VM must be paused.</li>
389-
<li><a href='#Debugger.skipStackFrames'>Debugger.skipStackFrames</a>: Makes backend skip steps in the sources with names matching given pattern. VM will try leave block-listed scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.</li>
389+
<li><a href='#Debugger.skipStackFrames'>Debugger.skipStackFrames</a>: Makes backend skip steps in the sources with names matching given pattern. VM will try leave blocklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.</li>
390390
</ul>
391391
<span class='label label-info'>Event</span>
392392
<ul>
@@ -3883,7 +3883,7 @@ <h1>Debugger</h1>
38833883
<li><a href='#Debugger.setVariableValue'>Debugger.setVariableValue</a>: Changes value of variable in a callframe or a closure. Either callframe or function must be specified. Object-based scopes are not supported and must be mutated manually.</li>
38843884
<li><a href='#Debugger.getStepInPositions'>Debugger.getStepInPositions</a>: Lists all positions where step-in is possible for a current statement in a specified call frame</li>
38853885
<li><a href='#Debugger.getBacktrace'>Debugger.getBacktrace</a>: Returns call stack including variables changed since VM was paused. VM must be paused.</li>
3886-
<li><a href='#Debugger.skipStackFrames'>Debugger.skipStackFrames</a>: Makes backend skip steps in the sources with names matching given pattern. VM will try leave block-listed scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.</li>
3886+
<li><a href='#Debugger.skipStackFrames'>Debugger.skipStackFrames</a>: Makes backend skip steps in the sources with names matching given pattern. VM will try leave blocklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.</li>
38873887
</ul>
38883888
<span class='label label-info'>Event</span>
38893889
<ul>
@@ -4453,7 +4453,7 @@ <h4>Code Example:</h4>
44534453
</div>
44544454
<div id='Debugger_skipStackFrames' class='command'>
44554455
<h3>Debugger.skipStackFrames <span class='label label-success'>Command</span></h3>
4456-
<p>Makes backend skip steps in the sources with names matching given pattern. VM will try leave block-listed scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.</p>
4456+
<p>Makes backend skip steps in the sources with names matching given pattern. VM will try leave blocklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.</p>
44574457
<dl>
44584458
<dt>script (optional)</dt>
44594459
<dd>String <span class='text'>Regular expression defining the scripts to ignore while stepping.</span></dd>

src/extensions/default/PrefsCodeHints/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ define(function (require, exports, module) {
197197
this.ctxInfo = JSONUtils.getContextInfo(this.editor, this.editor.getCursorPos(), true);
198198

199199
if (this.ctxInfo && this.ctxInfo.tokenType) {
200-
// Disallow hints for block-listed keys.
200+
// Disallow hints for blocklisted keys.
201201
if (this.ctxInfo.tokenType === JSONUtils.TOKEN_KEY &&
202202
parentKeyBlocklist.indexOf(this.ctxInfo.parentKeyName) !== -1) {
203203
return false;

src/extensions/default/PrefsCodeHints/unittests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ define(function (require, exports, module) {
247247
verifyHints(hintList, "spaceUnits");
248248
});
249249

250-
it("should NOT hint for block-listed parent keys", function () {
250+
it("should NOT hint for blocklisted parent keys", function () {
251251
// Between " and txt"
252252
testEditor.setCursorPos({line: 4, ch: 9});
253253
expectNoHints(PrefsCodeHints.hintProvider);

0 commit comments

Comments
 (0)