Skip to main content
summaryrefslogtreecommitdiffstats
blob: 061173aaa1af7781e54d974050ec452f4a795d6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.fx.code.editor.langs.codegen.fx.js;

public class JsPresentationReconciler extends org.eclipse.fx.text.ui.presentation.PresentationReconciler {
	public JsPresentationReconciler() {
		org.eclipse.fx.text.ui.rules.DefaultDamagerRepairer __dftl_partition_content_typeDamageRepairer = new org.eclipse.fx.text.ui.rules.DefaultDamagerRepairer(new Js__dftl_partition_content_type());
		setDamager(__dftl_partition_content_typeDamageRepairer, "__dftl_partition_content_type");
		setRepairer(__dftl_partition_content_typeDamageRepairer, "__dftl_partition_content_type");
		org.eclipse.fx.text.ui.rules.DefaultDamagerRepairer __js_single_line_commentDamageRepairer = new org.eclipse.fx.text.ui.rules.DefaultDamagerRepairer(new Js__js_single_line_comment());
		setDamager(__js_single_line_commentDamageRepairer, "__js_single_line_comment");
		setRepairer(__js_single_line_commentDamageRepairer, "__js_single_line_comment");
		org.eclipse.fx.text.ui.rules.DefaultDamagerRepairer __js_multi_line_commentDamageRepairer = new org.eclipse.fx.text.ui.rules.DefaultDamagerRepairer(new Js__js_multi_line_comment());
		setDamager(__js_multi_line_commentDamageRepairer, "__js_multi_line_comment");
		setRepairer(__js_multi_line_commentDamageRepairer, "__js_multi_line_comment");
		org.eclipse.fx.text.ui.rules.DefaultDamagerRepairer __js_stringDamageRepairer = new org.eclipse.fx.text.ui.rules.DefaultDamagerRepairer(new Js__js_string());
		setDamager(__js_stringDamageRepairer, "__js_string");
		setRepairer(__js_stringDamageRepairer, "__js_string");
	}
}

Back to the top