forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo-application-operations.ts
More file actions
25 lines (23 loc) · 975 Bytes
/
demo-application-operations.ts
File metadata and controls
25 lines (23 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {ApplicationOperations} from 'ng-devtools';
import {DirectivePosition, ElementPosition} from 'protocol';
export class DemoApplicationOperations extends ApplicationOperations {
viewSource(position: ElementPosition): void {
console.warn('viewSource() is not implemented because the demo app runs in an Iframe');
throw new Error('Not implemented in demo app.');
}
selectDomElement(position: ElementPosition): void {
console.warn('selectDomElement() is not implemented because the demo app runs in an Iframe');
throw new Error('Not implemented in demo app.');
}
inspect(directivePosition: DirectivePosition, keyPath: string[]): void {
console.warn('inspect() is not implemented because the demo app runs in an Iframe');
return;
}
}