chore(tests): enable lint, make it green. (#10224)
This commit is contained in:
@ -22,6 +22,9 @@ function _assertTokens(tokens: CssToken[], valuesArr: string[]): void {
|
||||
class MyVisitor implements CssAstVisitor {
|
||||
captures: {[key: string]: any[]} = {};
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
_capture(method: string, ast: CssAst, context: any) {
|
||||
this.captures[method] = isPresent(this.captures[method]) ? this.captures[method] : [];
|
||||
this.captures[method].push([ast, context]);
|
||||
|
Reference in New Issue
Block a user