Parent Directory | Revision Log | Revision Graph
Mirrored from https://git.chaotic.ninja/git/yakumo_izuru/aya
1 | package gcss |
2 | |
3 | // context represents a context of the parsing process. |
4 | type context struct { |
5 | vars map[string]*variable |
6 | mixins map[string]*mixinDeclaration |
7 | } |
8 | |
9 | // newContext creates and returns a context. |
10 | func newContext() *context { |
11 | return &context{ |
12 | vars: make(map[string]*variable), |
13 | mixins: make(map[string]*mixinDeclaration), |
14 | } |
15 | } |
nishi@chaotic.ninja | ViewVC Help |
Powered by ViewVC 1.3.0-dev |