mirror of
https://github.com/bellard/quickjs.git
synced 2024-11-22 05:38:11 +08:00
Improve repl regexp handling
- handle regexp with flags in repl completion - group config_jscalc customisations
This commit is contained in:
parent
8180d3dd87
commit
a78d2cbf7c
46
repl.js
46
repl.js
@ -67,24 +67,7 @@ import * as os from "os";
|
|||||||
bright_white: "\x1b[37;1m",
|
bright_white: "\x1b[37;1m",
|
||||||
};
|
};
|
||||||
|
|
||||||
var styles;
|
var styles = {
|
||||||
if (config_numcalc) {
|
|
||||||
styles = {
|
|
||||||
'default': 'black',
|
|
||||||
'comment': 'white',
|
|
||||||
'string': 'green',
|
|
||||||
'regex': 'cyan',
|
|
||||||
'number': 'green',
|
|
||||||
'keyword': 'blue',
|
|
||||||
'function': 'gray',
|
|
||||||
'type': 'bright_magenta',
|
|
||||||
'identifier': 'yellow',
|
|
||||||
'error': 'bright_red',
|
|
||||||
'result': 'black',
|
|
||||||
'error_msg': 'bright_red',
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
styles = {
|
|
||||||
'default': 'bright_green',
|
'default': 'bright_green',
|
||||||
'comment': 'white',
|
'comment': 'white',
|
||||||
'string': 'bright_cyan',
|
'string': 'bright_cyan',
|
||||||
@ -98,7 +81,6 @@ import * as os from "os";
|
|||||||
'result': 'bright_white',
|
'result': 'bright_white',
|
||||||
'error_msg': 'bright_red',
|
'error_msg': 'bright_red',
|
||||||
};
|
};
|
||||||
}
|
|
||||||
|
|
||||||
var history = [];
|
var history = [];
|
||||||
var clip_board = "";
|
var clip_board = "";
|
||||||
@ -109,11 +91,7 @@ import * as os from "os";
|
|||||||
var pstate = "";
|
var pstate = "";
|
||||||
var prompt = "";
|
var prompt = "";
|
||||||
var plen = 0;
|
var plen = 0;
|
||||||
var ps1;
|
var ps1 = "qjs > ";
|
||||||
if (config_numcalc)
|
|
||||||
ps1 = "> ";
|
|
||||||
else
|
|
||||||
ps1 = "qjs > ";
|
|
||||||
var ps2 = " ... ";
|
var ps2 = " ... ";
|
||||||
var utf8 = true;
|
var utf8 = true;
|
||||||
var show_time = false;
|
var show_time = false;
|
||||||
@ -613,6 +591,9 @@ import * as os from "os";
|
|||||||
base = get_context_word(line, pos);
|
base = get_context_word(line, pos);
|
||||||
if (["true", "false", "null", "this"].includes(base) || !isNaN(+base))
|
if (["true", "false", "null", "this"].includes(base) || !isNaN(+base))
|
||||||
return eval(base);
|
return eval(base);
|
||||||
|
// Check if `base` is a set of regexp flags
|
||||||
|
if (pos - base.length >= 3 && line[pos - base.length - 1] === '/')
|
||||||
|
return new RegExp('', base);
|
||||||
obj = get_context_object(line, pos - base.length);
|
obj = get_context_object(line, pos - base.length);
|
||||||
if (obj === null || obj === void 0)
|
if (obj === null || obj === void 0)
|
||||||
return obj;
|
return obj;
|
||||||
@ -1181,6 +1162,23 @@ import * as os from "os";
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (config_numcalc) {
|
if (config_numcalc) {
|
||||||
|
styles = {
|
||||||
|
'default': 'black',
|
||||||
|
'comment': 'white',
|
||||||
|
'string': 'green',
|
||||||
|
'regex': 'cyan',
|
||||||
|
'number': 'green',
|
||||||
|
'keyword': 'blue',
|
||||||
|
'function': 'gray',
|
||||||
|
'type': 'bright_magenta',
|
||||||
|
'identifier': 'yellow',
|
||||||
|
'error': 'bright_red',
|
||||||
|
'result': 'black',
|
||||||
|
'error_msg': 'bright_red',
|
||||||
|
};
|
||||||
|
|
||||||
|
ps1 = "> ";
|
||||||
|
|
||||||
/* called by the GUI */
|
/* called by the GUI */
|
||||||
g.execCmd = function (cmd) {
|
g.execCmd = function (cmd) {
|
||||||
switch(cmd) {
|
switch(cmd) {
|
||||||
|
Loading…
Reference in New Issue
Block a user