diff options
author | Xuejie Xiao <xxuejie@gmail.com> | 2012-12-10 20:41:58 -0500 |
---|---|---|
committer | Xuejie Xiao <xxuejie@gmail.com> | 2012-12-10 20:47:47 -0500 |
commit | 3732b13dce850dd6dc43ab390a7caf363d9d8edd (patch) | |
tree | cf55fefff939b60b05dffe37b34d51de4d22c26a /src/settings.js | |
parent | 1522befda65f6bc6c9cf5234ae7e078437cb5e65 (diff) |
Remove regexp case since it is slow and rarely used
Diffstat (limited to 'src/settings.js')
-rw-r--r-- | src/settings.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/settings.js b/src/settings.js index f32a8792..77111ed5 100644 --- a/src/settings.js +++ b/src/settings.js @@ -135,11 +135,8 @@ var LABEL_DEBUG = 0; // 1: Print out functions as we enter them var LABEL_FUNCTION_FILTERS = []; // Filters for function label debug. // The items for this array will be used // as filters for function names. Only the - // labels of functions that match one particular - // filter are printed out. - // The filters can be specified in both string - // type (use equality test) and regular expression - // (use match test). + // labels of functions that is equaled to + // one of the filters are printed out // When the array is empty, the filter is disabled. var EXCEPTION_DEBUG = 1; // Print out exceptions in emscriptened code |