From ebc189116f204f81153b693c4991335e0a6603fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Thu, 27 Aug 2020 23:51:48 +0900 Subject: [PATCH] ast is very complex than I thought --- css/ast/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/ast/src/lib.rs b/css/ast/src/lib.rs index a5ac2f459ce5e..cfe07e6f92719 100644 --- a/css/ast/src/lib.rs +++ b/css/ast/src/lib.rs @@ -42,7 +42,7 @@ pub struct StyleRule { pub struct Selector { pub span: Span, pub tag: Option, - pub base: BaseSelector, + pub base: Vec, pub pseudo_class: Option, pub pseudo_element: Option, }