We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4595510 commit 0dc3246Copy full SHA for 0dc3246
lib/src/single_line_comments/parser/single_line_comments.dart
@@ -5,6 +5,7 @@ import 'package:highlight/languages/java.dart';
5
import 'package:highlight/languages/php.dart';
6
import 'package:highlight/languages/python.dart';
7
import 'package:highlight/languages/scala.dart';
8
+import 'package:highlight/languages/vhdl.dart';
9
10
class SingleLineComments {
11
const SingleLineComments._();
@@ -16,8 +17,10 @@ class SingleLineComments {
16
17
php: [_slashes, _hash],
18
python: [_hash],
19
scala: [_slashes],
20
+ vhdl: [_hyphenMinuses],
21
};
22
23
static const _slashes = '//';
24
static const _hash = '#';
25
+ static const _hyphenMinuses = '--';
26
}
0 commit comments