emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/phps-mode fd36f650e6 10/15: Added TODO items


From: Christian Johansson
Subject: [elpa] externals/phps-mode fd36f650e6 10/15: Added TODO items
Date: Fri, 4 Mar 2022 14:13:03 -0500 (EST)

branch: externals/phps-mode
commit fd36f650e6a55286c9933dae9f290121b22888b9
Author: Christian Johansson <christian@cvj.se>
Commit: Christian Johansson <christian@cvj.se>

    Added TODO items
---
 TODO.md | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/TODO.md b/TODO.md
index 55f13d9588..f4b876bac8 100644
--- a/TODO.md
+++ b/TODO.md
@@ -1,5 +1,38 @@
 # TODO
 
+## Indentation
+
+<?php
+
+if (true) {
+    $valid = true;
+    $variable = myFunction();
+    switch ($variable) {
+        case Object::CASE1:
+            throw new Exception(
+                'MyException'
+            );
+        case Object::Case2:
+            throw new \Exception(
+                'MyException2',
+            );
+        case Object::Case3:
+            $valid = false;
+            break;
+        case Object::Case4:
+            if (!Object2::validate($variable)) {
+                $valid = false;
+            }
+            break;
+        case Object::Case5:
+            $valid = false;
+            break;
+        case Object::Case6:
+            $valid = true;
+        break;
+    }
+}
+
 ## Code intelligence
 
 * Fix race-condition in incremental parser when running asynchronous using 
threads
@@ -14,3 +47,7 @@ Fix by reloading file or running C-r to rescan and clear cache
 * Catch signaling from AST-generation, bookkeeping and imenu generation
 * Imenu-generation of conditionally defined functions and classes
 * Bookkeeping of class properties inside condition lists
+
+## Other
+
+Support for mmm-mode or similar



reply via email to

[Prev in Thread] Current Thread [Next in Thread]