@xterm/xterm 5.4.0-beta.17 → 5.4.0-beta.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -15,7 +15,6 @@ import { IdleTaskQueue } from 'common/TaskQueue';
|
|
|
15
15
|
import { IColor } from 'common/Types';
|
|
16
16
|
import { AttributeData } from 'common/buffer/AttributeData';
|
|
17
17
|
import { Attributes, DEFAULT_COLOR, DEFAULT_EXT, UnderlineStyle } from 'common/buffer/Constants';
|
|
18
|
-
import { traceCall } from 'common/services/LogService';
|
|
19
18
|
import { IUnicodeService } from 'common/services/Services';
|
|
20
19
|
|
|
21
20
|
/**
|
|
@@ -424,7 +423,6 @@ export class TextureAtlas implements ITextureAtlas {
|
|
|
424
423
|
return this._config.colors.contrastCache;
|
|
425
424
|
}
|
|
426
425
|
|
|
427
|
-
@traceCall
|
|
428
426
|
private _drawToCache(codeOrChars: number | string, bg: number, fg: number, ext: number, restrictToCellHeight: boolean = false): IRasterizedGlyph {
|
|
429
427
|
const chars = typeof codeOrChars === 'number' ? String.fromCharCode(codeOrChars) : codeOrChars;
|
|
430
428
|
|