Skip to content

Commit 7328fbb

Browse files
committed
Impl. Quote Handler for Expression Language
1 parent e0dafaf commit 7328fbb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package fr.adrienbrault.idea.symfony2plugin.expressionLanguage;
2+
3+
import com.intellij.codeInsight.editorActions.SimpleTokenSetQuoteHandler;
4+
import com.intellij.psi.TokenType;
5+
import fr.adrienbrault.idea.symfony2plugin.expressionLanguage.psi.ExpressionLanguageTypes;
6+
7+
public class ExpressionLanguageQuoteHandler extends SimpleTokenSetQuoteHandler {
8+
9+
public ExpressionLanguageQuoteHandler() {
10+
super(ExpressionLanguageTypes.STRING, TokenType.BAD_CHARACTER);
11+
}
12+
13+
}

0 commit comments

Comments
 (0)