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

public class GoPartitioner extends org.eclipse.jface.text.rules.FastPartitioner {
	public GoPartitioner() {
		super(new GoPartitionScanner(), new String[] {
			"__go_single_line_comment","__go_multi_line_comment","__go_string"
		});
	}
}

Back to the top