Add Robot_JoyIt driver

This commit is contained in:
2026-01-17 16:50:07 +01:00
parent e9e50acf5f
commit 0cfb4d5a95
15848 changed files with 570836 additions and 268976 deletions

View File

@@ -196,7 +196,7 @@ class Buffer {
position.column = 0;
last = i + 1;
if (last < len && line !== undefined) {
this._mark(++line, 0, null, null, filename);
this._mark(++line, 0, undefined, undefined, filename);
}
i = str.indexOf("\n", last);
}
@@ -278,12 +278,6 @@ class Buffer {
if (!this._map) return;
this._normalizePosition(prop, loc, columnOffset);
}
withSource(prop, loc, cb) {
if (this._map) {
this.source(prop, loc);
}
cb();
}
_normalizePosition(prop, loc, columnOffset) {
const pos = loc[prop];
const target = this._sourcePosition;