mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-29 11:47:48 +00:00
aa984c4909
- Update `.gitignore` to include `lab/` for backtesting and raw data. - Refactor `app.py` to improve error handling and logging. - Remove deprecated files: `core/bot_logic.py`, `core/bots/base_bot.py`, `core/bots/manager.py`, `core/db/database.py`, `core/routes/api_analysis.py`, `core/routes/api_bots_analysis.py`, `core/strategies/logic_ma.py`, `core/strategies/logic_rsi.py`. - Modify multiple files to enhance bot management, routing, and strategy handling. - Update JavaScript and HTML templates for better UI and functionality.
41 lines
854 B
JavaScript
41 lines
854 B
JavaScript
'use strict';
|
|
|
|
const types = require('../../tokenizer/types.cjs');
|
|
|
|
const ASTERISK = 0x002A; // U+002A ASTERISK (*)
|
|
const SOLIDUS = 0x002F; // U+002F SOLIDUS (/)
|
|
|
|
|
|
const name = 'Comment';
|
|
const structure = {
|
|
value: String
|
|
};
|
|
|
|
function parse() {
|
|
const start = this.tokenStart;
|
|
let end = this.tokenEnd;
|
|
|
|
this.eat(types.Comment);
|
|
|
|
if ((end - start + 2) >= 2 &&
|
|
this.charCodeAt(end - 2) === ASTERISK &&
|
|
this.charCodeAt(end - 1) === SOLIDUS) {
|
|
end -= 2;
|
|
}
|
|
|
|
return {
|
|
type: 'Comment',
|
|
loc: this.getLocation(start, this.tokenStart),
|
|
value: this.substring(start + 2, end)
|
|
};
|
|
}
|
|
|
|
function generate(node) {
|
|
this.token(types.Comment, '/*' + node.value + '*/');
|
|
}
|
|
|
|
exports.generate = generate;
|
|
exports.name = name;
|
|
exports.parse = parse;
|
|
exports.structure = structure;
|