mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Inline private member to ctor
This commit is contained in:
@@ -6,10 +6,8 @@ export class CharacterJoinerRegistry implements ICharacterJoinerRegistry {
|
||||
|
||||
private _characterJoiners: ICharacterJoiner[] = [];
|
||||
private _nextCharacterJoinerId: number = 0;
|
||||
private _terminal: ITerminal;
|
||||
|
||||
constructor(terminal: ITerminal) {
|
||||
this._terminal = terminal;
|
||||
constructor(private _terminal: ITerminal) {
|
||||
}
|
||||
|
||||
public registerCharacterJoiner(handler: (text: string) => [number, number][]): number {
|
||||
|
||||
Reference in New Issue
Block a user