Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2015-08-04 11:36:24 +0000
committerTom Schindl2015-08-04 11:36:24 +0000
commit5526cd6995db5e292b3ad7d69834298c2fd5d664 (patch)
tree6ece93c4061135ffc1799e0a2d7497d18c990974 /bundles/code/org.eclipse.fx.text/src/org/eclipse/fx/text
parent424e66d38385b26faf2c7c42548d46487a790694 (diff)
downloadorg.eclipse.efxclipse-5526cd6995db5e292b3ad7d69834298c2fd5d664.tar.gz
org.eclipse.efxclipse-5526cd6995db5e292b3ad7d69834298c2fd5d664.tar.xz
org.eclipse.efxclipse-5526cd6995db5e292b3ad7d69834298c2fd5d664.zip
Bug 474186 - Add support for Pattern-Rule to ldef
Diffstat (limited to 'bundles/code/org.eclipse.fx.text/src/org/eclipse/fx/text')
-rw-r--r--bundles/code/org.eclipse.fx.text/src/org/eclipse/fx/text/RegexRule.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/code/org.eclipse.fx.text/src/org/eclipse/fx/text/RegexRule.java b/bundles/code/org.eclipse.fx.text/src/org/eclipse/fx/text/RegexRule.java
index 2c57f5de9..9276d306c 100644
--- a/bundles/code/org.eclipse.fx.text/src/org/eclipse/fx/text/RegexRule.java
+++ b/bundles/code/org.eclipse.fx.text/src/org/eclipse/fx/text/RegexRule.java
@@ -34,6 +34,7 @@ public class RegexRule implements IRule {
}
if( startPattern.matcher(b.toString()).matches() ) {
+ System.err.println("MATCHED =======> " + b);
String input;
do {
readCount++;

Back to the top