Skip to content

Commit

Permalink
LSC — Explicitly mark AOT incompatible targets via 'jit:true'
Browse files Browse the repository at this point in the history
  • Loading branch information
qihach64 committed Jul 25, 2024
1 parent a34563c commit b25a3b4
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import {
} from '../types';
import {AppRoutingEffects, TEST_ONLY} from './app_routing_effects';

@Component({selector: 'test', template: ''})
@Component({selector: 'test', template: '', jit: true})
class TestableComponent {}

const testAction = createAction('[TEST] test action');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import {
@Component({
selector: 'testable-feature-flag-dialog-container',
template: '<div>Test</div>',
jit: true,
})
class TestableFeatureFlagDialogContainer {}

Expand Down
1 change: 1 addition & 0 deletions tensorboard/webapp/plugins/testing/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ export class ExtraDashboardComponent {}
imports: [
PluginRegistryModule.forPlugin('extra-plugin', ExtraDashboardComponent),
],
jit: true,
})
export class ExtraDashboardModule {}
1 change: 1 addition & 0 deletions tensorboard/webapp/testing/integration_test_module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import {MatIconTestingModule} from './mat_icon_module';
@Component({
selector: 'test',
template: 'hello',
jit: true,
})
export class TestableComponent {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,6 @@ export class TestingTBFeatureFlagDataSource extends TBFeatureFlagDataSource {
useExisting: TestingTBFeatureFlagDataSource,
},
],
jit: true,
})
export class TBFeatureFlagTestingModule {}
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@ import {TBHttpClientModule} from './tb_http_client_module';
),
}),
],
jit: true,
})
export class TBHttpClientTestingModule {}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {Directive, EventEmitter, NgModule, Output} from '@angular/core';
import {ComponentFixture} from '@angular/core/testing';
import {By} from '@angular/platform-browser';

@Directive({selector: '[observeIntersection]'})
@Directive({selector: '[observeIntersection]', jit: true})
class IntersectionObserverTestingDirective {
@Output() onVisibilityChange = new EventEmitter<{visible: boolean}>();

Expand All @@ -28,6 +28,7 @@ class IntersectionObserverTestingDirective {
@NgModule({
exports: [IntersectionObserverTestingDirective],
declarations: [IntersectionObserverTestingDirective],
jit: true,
})
export class IntersectionObserverTestingModule {
simulateVisibilityChange<T>(fixture: ComponentFixture<T>, visible: boolean) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class ResizeDetectorTestingDirective {
@NgModule({
exports: [ResizeDetectorTestingDirective],
declarations: [ResizeDetectorTestingDirective],
jit: true,
})
export class ResizeDetectorTestingModule {
simulateResize<T>(fixture: ComponentFixture<T>) {
Expand Down

0 comments on commit b25a3b4

Please sign in to comment.