Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/code/org.eclipse.fx.code.editor.langs.codegen.fx/src/org/eclipse/fx/code/editor/langs/codegen/fx/php/PhpPartitioner.java')
-rw-r--r--bundles/code/org.eclipse.fx.code.editor.langs.codegen.fx/src/org/eclipse/fx/code/editor/langs/codegen/fx/php/PhpPartitioner.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/bundles/code/org.eclipse.fx.code.editor.langs.codegen.fx/src/org/eclipse/fx/code/editor/langs/codegen/fx/php/PhpPartitioner.java b/bundles/code/org.eclipse.fx.code.editor.langs.codegen.fx/src/org/eclipse/fx/code/editor/langs/codegen/fx/php/PhpPartitioner.java
new file mode 100644
index 000000000..c092cff50
--- /dev/null
+++ b/bundles/code/org.eclipse.fx.code.editor.langs.codegen.fx/src/org/eclipse/fx/code/editor/langs/codegen/fx/php/PhpPartitioner.java
@@ -0,0 +1,9 @@
+package org.eclipse.fx.code.editor.langs.codegen.fx.php;
+
+public class PhpPartitioner extends org.eclipse.jface.text.rules.FastPartitioner {
+ public PhpPartitioner() {
+ super(new PhpPartitionScanner(), new String[] {
+ "__php_multiline_comment","__php_string"
+ });
+ }
+}

Back to the top