mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
18 lines
364 B
TypeScript
18 lines
364 B
TypeScript
import { Input, Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'mid-component',
|
|
template: `
|
|
<sink-component [sink7]="taint"></sink-component>
|
|
|
|
\n<sink-component [sink9]="taint" [testAttr]="taint"></sink-component>
|
|
`
|
|
})
|
|
export class InlineComponent {
|
|
taint: string;
|
|
|
|
constructor() {
|
|
this.taint = source();
|
|
}
|
|
}
|