tuned: avoid camel-case;
authorwenzelm
Sat, 25 Oct 2025 17:13:50 +0200
changeset 83382 67c848a77c7e
parent 83381 fea56c7615fd
child 83383 e7e1ffa36821
tuned: avoid camel-case;
src/Tools/VSCode/extension/src/documentation_panel.ts
--- a/src/Tools/VSCode/extension/src/documentation_panel.ts	Sat Oct 25 17:08:15 2025 +0200
+++ b/src/Tools/VSCode/extension/src/documentation_panel.ts	Sat Oct 25 17:13:50 2025 +0200
@@ -20,7 +20,7 @@
   public static readonly view_type = 'isabelle-documentation';
 
   private _view?: WebviewView;
-  private _documentationSections: any[] = [];
+  private _documentation_sections: any[] = [];
   private _initialized = false;
 
   constructor(
@@ -40,7 +40,7 @@
       if (!params || !params.sections || !Array.isArray(params.sections)) {
         return;
       }
-      this._documentationSections = params.sections;
+      this._documentation_sections = params.sections;
       if (this._view) {
         this._update_webview();
       }
@@ -62,7 +62,7 @@
 
     this._view.webview.html = this._get_html();
 
-    if (Object.keys(this._documentationSections).length > 0) {
+    if (Object.keys(this._documentation_sections).length > 0) {
       this._update_webview();
     }
 
@@ -82,7 +82,7 @@
 
     this._view.webview.postMessage({
       command: 'update',
-      sections: this._documentationSections,
+      sections: this._documentation_sections,
     });
   }