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

public class SwiftPartitioner extends org.eclipse.jface.text.rules.FastPartitioner {
	public SwiftPartitioner() {
		super(new SwiftPartitionScanner(), new String[] {
			"__swift_single_line_comment","__swift_multi_line_comment","__swift_string"
		});
	}
}

Back to the top