mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
17 lines
612 B
TypeScript
17 lines
612 B
TypeScript
import {isPresent} from '../src/facade/lang';
|
|
import {ElementSchemaRegistry} from '../index';
|
|
|
|
export class MockSchemaRegistry implements ElementSchemaRegistry {
|
|
constructor(public existingProperties: {[key: string]: boolean},
|
|
public attrPropMapping: {[key: string]: string}) {}
|
|
|
|
hasProperty(tagName: string, property: string): boolean {
|
|
var result = this.existingProperties[property];
|
|
return isPresent(result) ? result : true;
|
|
}
|
|
|
|
getMappedPropName(attrName: string): string {
|
|
var result = this.attrPropMapping[attrName];
|
|
return isPresent(result) ? result : attrName;
|
|
}
|
|
}
|