@@ -24,7 +24,7 @@ new RuleTester().run('jslog-context-list', rule, {
2424 code : `
2525 Lit.render(Lit.html\`
2626 <dialog @click=\${this.#handlePointerEvent} @pointermove=\${this.#handlePointerEvent} @cancel=\${this.#onCancel}
27- jslog=\${VisualLogging.dialog('uNkNown ').track({resize: true, keydown: 'Escape'}).parent('mapped')}>
27+ jslog=\${VisualLogging.dialog('uNkNown2 ').track({resize: true, keydown: 'Escape'}).parent('mapped')}>
2828 <div id="content-wrap">
2929 <div id="content">
3030 <slot></slot>
@@ -36,7 +36,7 @@ new RuleTester().run('jslog-context-list', rule, {
3636 errors : [
3737 {
3838 message :
39- 'Found jslog context value \'uNkNown \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
39+ 'Found jslog context value \'uNkNown2 \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
4040 } ,
4141 ] ,
4242 filename : 'front_end/components/test.ts' ,
@@ -45,7 +45,7 @@ new RuleTester().run('jslog-context-list', rule, {
4545 code : `
4646 UI.ActionRegistration.registerActionExtension({
4747 category: UI.ActionRegistration.ActionCategory.RECORDER,
48- actionId: 'uNkNown ',
48+ actionId: 'uNkNown3 ',
4949 title: i18nLazyString(UIStrings.createRecording),
5050 async loadActionDelegate() {
5151 const Recorder = await loadRecorderModule();
@@ -56,7 +56,7 @@ new RuleTester().run('jslog-context-list', rule, {
5656 errors : [
5757 {
5858 message :
59- 'Found jslog context value \'uNkNown \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
59+ 'Found jslog context value \'uNkNown3 \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
6060 } ,
6161 ] ,
6262 filename : 'front_end/components/test.ts' ,
@@ -65,7 +65,7 @@ new RuleTester().run('jslog-context-list', rule, {
6565 code : `
6666 UI.ViewManager.registerViewExtension({
6767 location: UI.ViewManager.ViewLocationValues.PANEL,
68- id: 'uNkNown ',
68+ id: 'uNkNown4 ',
6969 commandPrompt: i18nLazyString(UIStrings.showSources),
7070 title: i18nLazyString(UIStrings.sources),
7171 order: 30,
@@ -78,7 +78,7 @@ new RuleTester().run('jslog-context-list', rule, {
7878 errors : [
7979 {
8080 message :
81- 'Found jslog context value \'uNkNown \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
81+ 'Found jslog context value \'uNkNown4 \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
8282 } ,
8383 ] ,
8484 filename : 'front_end/components/test.ts' ,
@@ -87,41 +87,41 @@ new RuleTester().run('jslog-context-list', rule, {
8787 code : `
8888 Common.Settings.registerSettingExtension({
8989 storageType: Common.Settings.SettingStorageType.Synced,
90- settingName: 'uNkNown ',
90+ settingName: 'uNkNown5 ',
9191 settingType: Common.Settings.SettingType.REGEX,
9292 defaultValue: '/node_modules/|/bower_components/',
9393 });
9494 ` ,
9595 errors : [
9696 {
9797 message :
98- 'Found jslog context value \'uNkNown \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
98+ 'Found jslog context value \'uNkNown5 \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
9999 } ,
100100 ] ,
101101 filename : 'front_end/components/test.ts' ,
102102 } ,
103103 {
104104 code : `
105105 this.disableCaptureJSProfileSetting =
106- Common.Settings.Settings.instance().createSetting('uNkNown ', false);
106+ Common.Settings.Settings.instance().createSetting('uNkNown6 ', false);
107107 ` ,
108108 errors : [
109109 {
110110 message :
111- 'Found jslog context value \'uNkNown \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
111+ 'Found jslog context value \'uNkNown6 \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
112112 } ,
113113 ] ,
114114 filename : 'front_end/components/test.ts' ,
115115 } ,
116116 {
117117 code : `
118118 contextMenu.defaultSection().appendItem(
119- i18nString(UIStrings.refresh), this.refreshCallback.bind(this), {jslogContext: 'uNkNown '});
119+ i18nString(UIStrings.refresh), this.refreshCallback.bind(this), {jslogContext: 'uNkNown7 '});
120120 ` ,
121121 errors : [
122122 {
123123 message :
124- 'Found jslog context value \'uNkNown \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
124+ 'Found jslog context value \'uNkNown7 \' that is not listed in front_end/ui/visual_logging/KnownContextValues.ts' ,
125125 } ,
126126 ] ,
127127 filename : 'front_end/components/test.ts' ,
0 commit comments