Skip to main content
summaryrefslogtreecommitdiffstats
blob: 57d944b800e41dd357a6ecf1d14af8fc6a8f13af (plain) (blame)
1
2
3
4
5
6
7
8
9
package org.eclipse.fx.code.editor.langs.codegen.fx.ceylon;

public class CeylonPartitioner extends org.eclipse.jface.text.rules.FastPartitioner {
	public CeylonPartitioner() {
		super(new CeylonPartitionScanner(), new String[] {
			"__ceylon_multi_line_api_comment","__ceylon_single_line_comment","__ceylon_multi_line_comment","__ceylon_string"
		});
	}
}

Back to the top