From 402ffabc830a4dc00ac59a1d24053624b21ad5a9 Mon Sep 17 00:00:00 2001 From: Aron Buzinkay Date: Mon, 20 Jul 2020 16:17:06 +0200 Subject: [PATCH] Removed non-inclusive language Changed to more fitting replacement --- src/LiveDevelopment/Inspector/Inspector.json | 2 +- src/LiveDevelopment/Inspector/inspector.html | 6 +++--- src/editor/Editor.js | 4 ++-- src/editor/EditorManager.js | 2 +- src/extensions/default/PrefsCodeHints/main.js | 6 +++--- src/extensions/default/PrefsCodeHints/unittests.js | 2 +- src/language/JSONUtils.js | 2 +- test/perf/OpenFile-perf-files/brackets-concat.js | 12 ++++++------ 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/LiveDevelopment/Inspector/Inspector.json b/src/LiveDevelopment/Inspector/Inspector.json index 7da72c7f450..75cd5d9300c 100644 --- a/src/LiveDevelopment/Inspector/Inspector.json +++ b/src/LiveDevelopment/Inspector/Inspector.json @@ -3244,7 +3244,7 @@ { "name": "script", "optional": true, "type": "string", "description": "Regular expression defining the scripts to ignore while stepping." } ], "hidden": true, - "description": "Makes backend skip steps in the sources with names matching given pattern. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful." + "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." } ], "events": [ diff --git a/src/LiveDevelopment/Inspector/inspector.html b/src/LiveDevelopment/Inspector/inspector.html index b3892f48e43..ef422391d31 100644 --- a/src/LiveDevelopment/Inspector/inspector.html +++ b/src/LiveDevelopment/Inspector/inspector.html @@ -386,7 +386,7 @@

Debugger

  • Debugger.setVariableValue: 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.
  • Debugger.getStepInPositions: Lists all positions where step-in is possible for a current statement in a specified call frame
  • Debugger.getBacktrace: Returns call stack including variables changed since VM was paused. VM must be paused.
  • -
  • Debugger.skipStackFrames: Makes backend skip steps in the sources with names matching given pattern. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
  • +
  • Debugger.skipStackFrames: 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.
  • Event Event