Skip to main content
summaryrefslogtreecommitdiffstats
blob: bfc23eb9e96536833c3922724c10fd63ba99a6cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.eclipse.fx.code.editor.ldef.langs.fx.dart;

public class Dart__dart_singleline_comment extends org.eclipse.jface.text.rules.RuleBasedScanner {
	public Dart__dart_singleline_comment() {
		org.eclipse.jface.text.rules.Token dart_single_line_commentToken = new org.eclipse.jface.text.rules.Token(new org.eclipse.fx.text.ui.TextAttribute("dart.dart_single_line_comment"));
		setDefaultReturnToken(dart_single_line_commentToken);
		org.eclipse.jface.text.rules.IRule[] rules = new org.eclipse.jface.text.rules.IRule[0];

		setRules(rules);
	}
}

Back to the top