1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use bitmask;
/// A set of runtime feature flags which can be enabled individually or in combination, which will change the way
/// [Parser][crate::Parser] works.
///
/// To build multiple features, use the bitwise OR operator.
///
/// # Example
///
/// ```
/// use css_lexer::Lexer;
/// use css_parse::*;
/// use bumpalo::Bump;
/// let bump = Bump::default();
/// let features = Feature::SingleLineComments | Feature::SeparateWhitespace;
/// let source_text = "// foo";
/// let lexer = Lexer::new_with_features(&EmptyAtomSet::ATOMS, &source_text, features.into());
/// let mut parser = Parser::new(&bump, &source_text, lexer).with_features(features);
/// ```