mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
Fix some 'super' must be called before accessing 'this' errors
This commit is contained in:
@@ -290,10 +290,10 @@ export class Selection extends Range {
|
||||
throw new Error('Invalid arguments');
|
||||
}
|
||||
|
||||
super(anchor, active);
|
||||
|
||||
this._anchor = anchor;
|
||||
this._active = active;
|
||||
|
||||
super(anchor, active);
|
||||
}
|
||||
|
||||
get isReversed(): boolean {
|
||||
|
||||
Reference in New Issue
Block a user