perf(css/minifier): Use JsWord instead of &str (#5806)

This commit is contained in:
Donny/강동윤 2022-09-10 16:20:51 +09:00 committed by GitHub
parent 6cf71285a6
commit 7391cc99b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
131 changed files with 2329 additions and 2089 deletions

View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -eu
export CARGO_TERM_COLOR=never
cargo check 2>&1 | grep 'no rules expected the token' | sed -e 's/error: no rules expected the token `"//' | sed -e 's/"`//'

View File

@ -1,3 +1,7 @@
-moz-any
-webkit-any
-webkit-mask-box-image-repeat
-webkit-mask-repeat
AbortController
AbortSignal
AnalyserNode
@ -573,6 +577,7 @@ _defineProperty
_extends
_toConsumableArray
abstract
after
and
any
apply
@ -582,96 +587,245 @@ assert
asserts
async
await
background-repeat
before
bigint
block
bold
boolean
border-block-width
border-bottom-left-radius
border-bottom-right-radius
border-end-end-radius
border-end-start-radius
border-image-outset
border-image-repeat
border-image-repeat
border-image-slice
border-image-width
border-inline-width
border-spacing
border-start-end-radius
border-start-start-radius
border-style
border-top-left-radius
border-top-right-radius
border-width
break
call
case
catch
class
cm
color-profile
concat
const
constructor
continue
counter-style
createClass
createReactClass
cubic-bezier
debugger
declare
default
deg
delete
display
displayName
do
else
end
end
enum
env
error: no rules expected the token `js_word`
eval
even
export
extends
false
fill-opacity
finally
first-child
first-letter
first-line
first-of-type
flex
flow
flow-root
font-palette-values
font-weight
for
from
function
get
global
grad
grid
hz
if
implements
import
important
in
infer
inherit
initial
inline
inset
inset-block
inset-inline
instanceof
interface
intrinsic
is
iterator
jump-end
jump-end
jump-start
jump-start
key
keyof
khz
last-of-type
layer
length
let
list-item
main
margin
margin-block
margin-inline
mask-border-outset
mask-border-repeat
mask-repeat
matches
matrix3d
meta
mm
module
ms
namespace
never
new
no-repeat
no-repeat
none
normal
not
nth-child
nth-last-child
nth-last-of-type
nth-of-type
null
number
object
of
only
opacity
or
out
overflow
override
overscroll-behavior
package
padding
padding-block
padding-inline
pc
pc
pc
pc
pc
pc
pc
pc
pc
pc
place-content
place-items
place-self
private
process
protected
pt
pt
pt
pt
pt
pt
pt
pt
public
px
q
q
q
q
q
q
q
rad
readonly
repeat
repeat
require
return
revert
rotate
rotate3d
rotatex
rotatey
rotatez
round
ruby
run-in
s
scale
scale3d
scroll-margin
scroll-margin-block
scroll-margin-inline
scroll-padding
scroll-padding-block
scroll-padding-inline
scroll-snap-align
set
shape-image-threshold
skew
skewx
skewy
space
start
static
steps
string
stroke-opacity
super
switch
symbol
table
target
this
throw
toString
translate
translate3d
transparent
true
try
turn
type
typeof
undefined
unique
unknown
unset
url
var
void
where
while
with
yield

View File

@ -1,3 +1,4 @@
use swc_atoms::js_word;
use swc_common::DUMMY_SP;
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -48,8 +49,11 @@ impl VisitMut for CompressAlphaValue {
declaration.visit_mut_children_with(self);
if let DeclarationName::Ident(Ident { value, .. }) = &declaration.name {
match &*value.to_lowercase() {
"opacity" | "fill-opacity" | "stroke-opacity" | "shape-image-threshold" => {
match value.to_ascii_lowercase() {
js_word!("opacity")
| js_word!("fill-opacity")
| js_word!("stroke-opacity")
| js_word!("shape-image-threshold") => {
let old_preserve = self.preserve;
self.preserve = false;

View File

@ -1,5 +1,6 @@
use core::f64::consts::PI;
use swc_atoms::{js_word, JsWord};
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -30,15 +31,15 @@ impl VisitMut for CompressAngle {
match &function.name {
Ident { value, .. }
if matches!(
&*value.to_lowercase(),
"rotate"
| "skew"
| "skewx"
| "skewy"
| "rotate3d"
| "rotatex"
| "rotatey"
| "rotatez"
value.to_ascii_lowercase(),
js_word!("rotate")
| js_word!("skew")
| js_word!("skewx")
| js_word!("skewy")
| js_word!("rotate3d")
| js_word!("rotatex")
| js_word!("rotatey")
| js_word!("rotatez")
) =>
{
let old_in_block = self.in_transform_function;
@ -87,7 +88,7 @@ impl VisitMut for CompressAngle {
return;
}
let from = match get_angle_type(&angle.unit.value.to_lowercase()) {
let from = match get_angle_type(&angle.unit.value.to_ascii_lowercase()) {
Some(angel_type) => angel_type,
None => return,
};
@ -130,12 +131,12 @@ pub(crate) fn to_deg(value: f64, from: AngleType) -> f64 {
}
}
pub(crate) fn get_angle_type(unit: &str) -> Option<AngleType> {
match unit {
"deg" => Some(AngleType::Deg),
"grad" => Some(AngleType::Grad),
"rad" => Some(AngleType::Rad),
"turn" => Some(AngleType::Turn),
pub(crate) fn get_angle_type(unit: &JsWord) -> Option<AngleType> {
match *unit {
js_word!("deg") => Some(AngleType::Deg),
js_word!("grad") => Some(AngleType::Grad),
js_word!("rad") => Some(AngleType::Rad),
js_word!("turn") => Some(AngleType::Turn),
_ => None,
}
}

View File

@ -1,3 +1,4 @@
use swc_atoms::js_word;
use swc_common::DUMMY_SP;
use swc_css_ast::*;
use swc_css_utils::NAMED_COLORS;
@ -282,7 +283,7 @@ impl CompressColor {
Some(*value / 100.0)
}
Some(ComponentValue::Ident(Ident { value, .. }))
if &*value.to_lowercase() == "none" =>
if value.to_ascii_lowercase() == js_word!("none") =>
{
Some(0.0)
}
@ -301,7 +302,7 @@ impl CompressColor {
unit: Ident { value: unit, .. },
..
}) => {
let angel_type = match get_angle_type(&unit.to_lowercase()) {
let angel_type = match get_angle_type(&unit.to_ascii_lowercase()) {
Some(angel_type) => angel_type,
_ => return None,
};
@ -319,7 +320,7 @@ impl CompressColor {
Some(value)
}
Some(ComponentValue::Ident(Ident { value, .. }))
if &*value.to_lowercase() == "none" =>
if value.to_ascii_lowercase() == js_word!("none") =>
{
Some(0.0)
}
@ -342,7 +343,7 @@ impl CompressColor {
Some(*value / 100.0)
}
Some(ComponentValue::Ident(Ident { value, .. }))
if &*value.to_lowercase() == "none" =>
if value.to_ascii_lowercase() == js_word!("none") =>
{
Some(0.0)
}
@ -377,7 +378,7 @@ impl CompressColor {
Some((2.55 * *value).round())
}
Some(ComponentValue::Ident(Ident { value, .. }))
if &*value.to_lowercase() == "none" =>
if value.to_ascii_lowercase() == js_word!("none") =>
{
Some(0.0)
}
@ -395,12 +396,12 @@ impl VisitMut for CompressColor {
value,
span,
..
})) => match &*value.to_lowercase() {
"transparent" => {
})) => match value.to_ascii_lowercase() {
js_word!("transparent") => {
*color = make_color!(*span, 0.0_f64, 0.0_f64, 0.0_f64, 0.0_f64);
}
name => {
if let Some(value) = NAMED_COLORS.get(name) {
if let Some(value) = NAMED_COLORS.get(&name) {
*color = make_color!(
*span,
value.rgb[0] as f64,
@ -414,7 +415,7 @@ impl VisitMut for CompressColor {
Color::AbsoluteColorBase(AbsoluteColorBase::HexColor(HexColor {
span, value, ..
})) => {
if let Some(value) = self.get_named_color_by_hex(&value.to_lowercase()) {
if let Some(value) = self.get_named_color_by_hex(&value.to_ascii_lowercase()) {
*color = Color::AbsoluteColorBase(AbsoluteColorBase::NamedColorOrTransparent(
Ident {
span: *span,

View File

@ -1,3 +1,4 @@
use swc_atoms::js_word;
use swc_common::util::take::Take;
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -26,7 +27,7 @@ impl CompressDeclaration {
..
}))),
) if value_1.value == value_2.value
&& unit_1.value.to_lowercase() == unit_2.value.to_lowercase() =>
&& unit_1.value.to_ascii_lowercase() == unit_2.value.to_ascii_lowercase() =>
{
true
}
@ -66,7 +67,7 @@ impl CompressDeclaration {
..
}))),
) if value_1.value == value_2.value
&& unit_1.value.to_lowercase() == unit_2.value.to_lowercase() =>
&& unit_1.value.to_ascii_lowercase() == unit_2.value.to_ascii_lowercase() =>
{
true
}
@ -100,7 +101,7 @@ impl CompressDeclaration {
matches!((node_1, node_2), (
Some(ComponentValue::Ident(Ident { value: value_1, .. })),
Some(ComponentValue::Ident(Ident { value: value_2, .. })),
) if value_1.to_lowercase() == value_2.to_lowercase())
) if value_1.to_ascii_lowercase() == value_2.to_ascii_lowercase())
}
}
@ -109,8 +110,8 @@ impl VisitMut for CompressDeclaration {
declaration.visit_mut_children_with(self);
if let DeclarationName::Ident(Ident { value, .. }) = &declaration.name {
match &*value.to_lowercase() {
"display" if declaration.value.len() > 1 => {
match value.to_ascii_lowercase() {
js_word!("display") if declaration.value.len() > 1 => {
let mut outside = None;
let mut inside = None;
let mut list_item = None;
@ -119,25 +120,33 @@ impl VisitMut for CompressDeclaration {
match value {
outside_node @ ComponentValue::Ident(Ident { value, .. })
if matches!(
&*value.to_lowercase(),
"block" | "inline" | "run-in"
value.to_ascii_lowercase(),
js_word!("block") | js_word!("inline") | js_word!("run-in")
) =>
{
outside = Some(outside_node);
}
inside_node @ ComponentValue::Ident(Ident { value, .. })
if matches!(
&*value.to_lowercase(),
"flow" | "flow-root" | "table" | "flex" | "grid" | "ruby"
value.to_ascii_lowercase(),
js_word!("flow")
| js_word!("flow-root")
| js_word!("table")
| js_word!("flex")
| js_word!("grid")
| js_word!("ruby")
) =>
{
inside = Some(inside_node);
}
list_item_node @ ComponentValue::Ident(Ident { value, .. })
if &*value.to_lowercase() == "list-item" =>
if value.to_ascii_lowercase() == js_word!("list-item") =>
{
if let Some(ComponentValue::Ident(Ident { value, .. })) = inside {
if !matches!(&*value.to_lowercase(), "flow" | "flow-root") {
if !matches!(
value.to_ascii_lowercase(),
js_word!("flow") | js_word!("flow-root")
) {
continue;
}
}
@ -159,7 +168,7 @@ impl VisitMut for CompressDeclaration {
..
})),
None,
) if &*inside_value.to_lowercase() == "flow" => {
) if inside_value.to_ascii_lowercase() == js_word!("flow") => {
declaration.value = vec![outside.clone()];
}
// `block flow-root` -> `flow-root`
@ -175,8 +184,8 @@ impl VisitMut for CompressDeclaration {
}),
),
None,
) if &*outside_value.to_lowercase() == "block"
&& &*inside_value.to_lowercase() == "flow-root" =>
) if outside_value.to_ascii_lowercase() == js_word!("block")
&& inside_value.to_ascii_lowercase() == js_word!("flow-root") =>
{
declaration.value = vec![inside.clone()];
}
@ -192,8 +201,8 @@ impl VisitMut for CompressDeclaration {
..
})),
None,
) if &*outside_value.to_lowercase() == "inline"
&& &*inside_value.to_lowercase() == "flow-root" =>
) if outside_value.to_ascii_lowercase() == js_word!("inline")
&& inside_value.to_ascii_lowercase() == js_word!("flow-root") =>
{
declaration.value = vec![ComponentValue::Ident(Ident {
span: *span,
@ -212,8 +221,8 @@ impl VisitMut for CompressDeclaration {
..
})),
Some(list_item),
) if &*outside_value.to_lowercase() == "block"
&& &*inside_value.to_lowercase() == "flow" =>
) if outside_value.to_ascii_lowercase() == js_word!("block")
&& inside_value.to_ascii_lowercase() == js_word!("flow") =>
{
declaration.value = vec![list_item.clone()];
}
@ -225,7 +234,7 @@ impl VisitMut for CompressDeclaration {
})),
None,
Some(list_item),
) if &*outside_value.to_lowercase() == "block" => {
) if outside_value.to_ascii_lowercase() == js_word!("block") => {
declaration.value = vec![list_item.clone()];
}
// `flow list-item` -> `list-item`
@ -236,7 +245,7 @@ impl VisitMut for CompressDeclaration {
..
})),
Some(list_item),
) if &*inside_value.to_lowercase() == "flow" => {
) if inside_value.to_ascii_lowercase() == js_word!("flow") => {
declaration.value = vec![list_item.clone()];
}
// `inline flow list-item` -> `inline list-item`
@ -252,8 +261,8 @@ impl VisitMut for CompressDeclaration {
..
})),
Some(list_item),
) if &*outside_value.to_lowercase() == "inline"
&& &*inside_value.to_lowercase() == "flow" =>
) if outside_value.to_ascii_lowercase() == js_word!("inline")
&& inside_value.to_ascii_lowercase() == js_word!("flow") =>
{
declaration.value = vec![outside.clone(), list_item.clone()];
}
@ -272,10 +281,10 @@ impl VisitMut for CompressDeclaration {
}),
),
None,
) if &*outside_value.to_lowercase() == "block"
) if outside_value.to_ascii_lowercase() == js_word!("block")
&& matches!(
&*inside_value.to_lowercase(),
"flex" | "grid" | "table"
inside_value.to_ascii_lowercase(),
js_word!("flex") | js_word!("grid") | js_word!("table")
) =>
{
declaration.value = vec![inside.clone()];
@ -293,8 +302,8 @@ impl VisitMut for CompressDeclaration {
}),
),
None,
) if &*outside_value.to_lowercase() == "inline"
&& inside_value.to_lowercase() == "ruby" =>
) if outside_value.to_ascii_lowercase() == js_word!("inline")
&& inside_value.to_ascii_lowercase() == js_word!("ruby") =>
{
declaration.value = vec![inside.clone()];
}
@ -303,16 +312,16 @@ impl VisitMut for CompressDeclaration {
}
// TODO handle `auto`
// TODO compress numbers too
"padding"
| "margin"
| "border-width"
| "inset"
| "scroll-margin"
| "scroll-padding"
| "mask-border-outset"
| "border-image-width"
| "border-image-outset"
| "border-image-slice"
js_word!("padding")
| js_word!("margin")
| js_word!("border-width")
| js_word!("inset")
| js_word!("scroll-margin")
| js_word!("scroll-padding")
| js_word!("mask-border-outset")
| js_word!("border-image-width")
| js_word!("border-image-outset")
| js_word!("border-image-slice")
if declaration.value.len() > 1 =>
{
let top = declaration.value.get(0);
@ -347,27 +356,27 @@ impl VisitMut for CompressDeclaration {
}
}
}
"padding-inline"
| "padding-block"
| "margin-inline"
| "margin-block"
| "margin-inline"
| "inset-inline"
| "inset-block"
| "border-inline-width"
| "border-block-width"
| "scroll-padding-inline"
| "scroll-padding-block"
| "scroll-margin-inline"
| "scroll-margin-block"
| "border-top-left-radius"
| "border-top-right-radius"
| "border-bottom-right-radius"
| "border-bottom-left-radius"
| "border-start-start-radius"
| "border-start-end-radius"
| "border-end-start-radius"
| "border-end-end-radius"
js_word!("padding-inline")
| js_word!("padding-block")
| js_word!("margin-inline")
| js_word!("margin-block")
| js_word!("margin-inline")
| js_word!("inset-inline")
| js_word!("inset-block")
| js_word!("border-inline-width")
| js_word!("border-block-width")
| js_word!("scroll-padding-inline")
| js_word!("scroll-padding-block")
| js_word!("scroll-margin-inline")
| js_word!("scroll-margin-block")
| js_word!("border-top-left-radius")
| js_word!("border-top-right-radius")
| js_word!("border-bottom-right-radius")
| js_word!("border-bottom-left-radius")
| js_word!("border-start-start-radius")
| js_word!("border-start-end-radius")
| js_word!("border-end-start-radius")
| js_word!("border-end-end-radius")
if declaration.value.len() == 2 =>
{
let first = declaration.value.get(0);
@ -379,7 +388,7 @@ impl VisitMut for CompressDeclaration {
declaration.value.remove(1);
}
}
"border-style" if declaration.value.len() > 1 => {
js_word!("border-style") if declaration.value.len() > 1 => {
let top = declaration.value.get(0);
let right = declaration
.value
@ -412,7 +421,9 @@ impl VisitMut for CompressDeclaration {
}
}
}
"border-spacing" | "border-image-repeat" if declaration.value.len() == 2 => {
js_word!("border-spacing") | js_word!("border-image-repeat")
if declaration.value.len() == 2 =>
{
let first = declaration.value.get(0);
let second = declaration.value.get(1);
@ -420,14 +431,14 @@ impl VisitMut for CompressDeclaration {
declaration.value.remove(1);
}
}
"font-weight" => {
js_word!("font-weight") => {
declaration.value = declaration
.value
.take()
.into_iter()
.map(|node| match node {
ComponentValue::Ident(Ident { value, span, .. })
if value.to_lowercase() == "normal" =>
if value.to_ascii_lowercase() == js_word!("normal") =>
{
ComponentValue::Number(Number {
span,
@ -436,7 +447,7 @@ impl VisitMut for CompressDeclaration {
})
}
ComponentValue::Ident(Ident { value, span, .. })
if value.to_lowercase() == "bold" =>
if value.to_ascii_lowercase() == js_word!("bold") =>
{
ComponentValue::Number(Number {
span,
@ -448,7 +459,9 @@ impl VisitMut for CompressDeclaration {
})
.collect();
}
"background-repeat" | "mask-repeat" | "-webkit-mask-repeat"
js_word!("background-repeat")
| js_word!("mask-repeat")
| js_word!("-webkit-mask-repeat")
if declaration.value.len() == 2 =>
{
let first = declaration.value.get(0);
@ -466,40 +479,43 @@ impl VisitMut for CompressDeclaration {
})),
) = (first, second)
{
match (&*first_value.to_lowercase(), &*second_value.to_lowercase()) {
("repeat", "no-repeat") => {
match (
first_value.to_ascii_lowercase(),
second_value.to_ascii_lowercase(),
) {
(js_word!("repeat"), js_word!("no-repeat")) => {
declaration.value = vec![ComponentValue::Ident(Ident {
span: *span,
value: "repeat-x".into(),
raw: None,
})];
}
("no-repeat", "repeat") => {
(js_word!("no-repeat"), js_word!("repeat")) => {
declaration.value = vec![ComponentValue::Ident(Ident {
span: *span,
value: "repeat-y".into(),
raw: None,
})];
}
("repeat", "repeat")
| ("space", "space")
| ("round", "round")
| ("no-repeat", "no-repeat") => {
(js_word!("repeat"), js_word!("repeat"))
| (js_word!("space"), js_word!("space"))
| (js_word!("round"), js_word!("round"))
| (js_word!("no-repeat"), js_word!("no-repeat")) => {
declaration.value.remove(1);
}
_ => {}
}
}
}
"border-image-repeat"
| "mask-border-repeat"
| "-webkit-mask-box-image-repeat"
| "overscroll-behavior"
| "scroll-snap-align"
| "overflow"
| "place-self"
| "place-items"
| "place-content"
js_word!("border-image-repeat")
| js_word!("mask-border-repeat")
| js_word!("-webkit-mask-box-image-repeat")
| js_word!("overscroll-behavior")
| js_word!("scroll-snap-align")
| js_word!("overflow")
| js_word!("place-self")
| js_word!("place-items")
| js_word!("place-content")
if declaration.value.len() == 2 =>
{
let first = declaration.value.get(0);

View File

@ -1,3 +1,4 @@
use swc_atoms::js_word;
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -18,7 +19,9 @@ impl VisitMut for CompressEasingFunction {
name,
value: function_value,
span,
}) if &*name.value.to_lowercase() == "cubic-bezier" && function_value.len() == 7 => {
}) if name.value.to_ascii_lowercase() == js_word!("cubic-bezier")
&& function_value.len() == 7 =>
{
if let (
ComponentValue::Number(Number { value: first, .. }),
ComponentValue::Number(Number { value: second, .. }),
@ -67,7 +70,9 @@ impl VisitMut for CompressEasingFunction {
name,
value: function_value,
span,
}) if &*name.value.to_lowercase() == "steps" && function_value.len() == 3 => {
}) if name.value.to_ascii_lowercase() == js_word!("steps")
&& function_value.len() == 3 =>
{
match (&function_value[0], &function_value[2]) {
(
ComponentValue::Number(Number {
@ -77,15 +82,15 @@ impl VisitMut for CompressEasingFunction {
ComponentValue::Ident(Ident {
value: ident_value, ..
}),
) if *number_value == 1.0 => match &*ident_value.to_lowercase() {
"start" | "jump-start" => {
) if *number_value == 1.0 => match ident_value.to_ascii_lowercase() {
js_word!("start") | js_word!("jump-start") => {
*component_value = ComponentValue::Ident(Ident {
span: *span,
value: "step-start".into(),
raw: None,
})
}
"end" | "jump-end" => {
js_word!("end") | js_word!("jump-end") => {
*component_value = ComponentValue::Ident(Ident {
span: *span,
value: "step-end".into(),
@ -99,7 +104,7 @@ impl VisitMut for CompressEasingFunction {
ComponentValue::Ident(Ident {
value: ident_value, ..
}),
) if ident_value.to_lowercase() == "jump-start" => {
) if ident_value.to_ascii_lowercase() == js_word!("jump-start") => {
function_value[2] = ComponentValue::Ident(Ident {
span: *span,
value: "start".into(),
@ -111,8 +116,8 @@ impl VisitMut for CompressEasingFunction {
ComponentValue::Ident(Ident {
value: ident_value, ..
}),
) => match &*ident_value.to_lowercase() {
"end" | "jump-end" => {
) => match ident_value.to_ascii_lowercase() {
js_word!("end") | js_word!("jump-end") => {
*function_value = vec![ComponentValue::Number(number.clone())];
}
_ => {}

View File

@ -1,3 +1,4 @@
use swc_atoms::{js_word, JsWord};
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -50,9 +51,12 @@ impl VisitMut for CompressEmpty {
}
}
fn need_keep_by_name(name: &str) -> bool {
fn need_keep_by_name(name: &JsWord) -> bool {
matches!(
&*name.to_lowercase(),
"counter-style" | "color-profile" | "font-palette-values" | "layer"
name.to_ascii_lowercase(),
js_word!("counter-style")
| js_word!("color-profile")
| js_word!("font-palette-values")
| js_word!("layer")
)
}

View File

@ -1,3 +1,4 @@
use swc_atoms::js_word;
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -11,8 +12,10 @@ impl VisitMut for CompressFrequency {
fn visit_mut_frequency(&mut self, frequency: &mut Frequency) {
frequency.visit_mut_children_with(self);
match &*frequency.unit.value.to_lowercase() {
"hz" if frequency.value.value > 0.0 && frequency.value.value % 1000.0 == 0.0 => {
match frequency.unit.value.to_ascii_lowercase() {
js_word!("hz")
if frequency.value.value > 0.0 && frequency.value.value % 1000.0 == 0.0 =>
{
let new_value = frequency.value.value / 1000.0;
frequency.value = Number {
@ -26,7 +29,7 @@ impl VisitMut for CompressFrequency {
raw: None,
};
}
"khz"
js_word!("khz")
if frequency.value.value == 0.0
|| (frequency.value.value > 0.0 && frequency.value.value < 0.1) =>
{

View File

@ -1,3 +1,4 @@
use swc_atoms::js_word;
use swc_common::DUMMY_SP;
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -15,8 +16,13 @@ impl VisitMut for CompressKeyframes {
match &at_rule.prelude {
Some(AtRulePrelude::KeyframesPrelude(KeyframesName::Str(string)))
if !matches!(
&*string.value.to_lowercase(),
"initial" | "inherit" | "unset" | "revert" | "default" | "none"
string.value.to_ascii_lowercase(),
js_word!("initial")
| js_word!("inherit")
| js_word!("unset")
| js_word!("revert")
| js_word!("default")
| js_word!("none")
) =>
{
at_rule.prelude = Some(AtRulePrelude::KeyframesPrelude(
@ -35,7 +41,7 @@ impl VisitMut for CompressKeyframes {
keyframe_selector.visit_mut_children_with(self);
match keyframe_selector {
KeyframeSelector::Ident(i) if &*i.value.to_lowercase() == "from" => {
KeyframeSelector::Ident(i) if i.value.to_ascii_lowercase() == js_word!("from") => {
*keyframe_selector = KeyframeSelector::Percentage(Percentage {
span: i.span,
value: Number {

View File

@ -1,3 +1,4 @@
use swc_atoms::{js_word, JsWord};
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -12,88 +13,88 @@ struct CompressLength {
}
impl CompressLength {
fn convert(&mut self, value: f64, from_unit: &str, to_unit: &str) -> f64 {
fn convert(&mut self, value: f64, from_unit: JsWord, to_unit: JsWord) -> f64 {
match to_unit {
"cm" => match from_unit {
"cm" => value,
"mm" => value / 10.0,
"q" => value / 40.0,
"in" => 2.54 * value,
"pc" => 2.54 / 6.0 * value,
"pt" => 2.54 / 72.0 * value,
"px" => 2.54 / 96.0 * value,
js_word!("cm") => match from_unit {
js_word!("cm") => value,
js_word!("mm") => value / 10.0,
js_word!("q") => value / 40.0,
js_word!("in") => 2.54 * value,
js_word!("pc") => 2.54 / 6.0 * value,
js_word!("pt") => 2.54 / 72.0 * value,
js_word!("px") => 2.54 / 96.0 * value,
_ => {
unreachable!()
}
},
"mm" => match from_unit {
"cm" => 10.0 * value,
"mm" => value,
"q" => value / 4.0,
"in" => 25.4 * value,
"pc" => 25.4 / 6.0 * value,
"pt" => 25.4 / 72.0 * value,
"px" => 25.4 / 96.0 * value,
js_word!("mm") => match from_unit {
js_word!("cm") => 10.0 * value,
js_word!("mm") => value,
js_word!("q") => value / 4.0,
js_word!("in") => 25.4 * value,
js_word!("pc") => 25.4 / 6.0 * value,
js_word!("pt") => 25.4 / 72.0 * value,
js_word!("px") => 25.4 / 96.0 * value,
_ => {
unreachable!()
}
},
"q" => match from_unit {
"cm" => 40.0 * value,
"mm" => 4.0 * value,
"q" => value,
"in" => 101.6 * value,
"pc" => 101.6 / 6.0 * value,
"pt" => 101.6 / 72.0 * value,
"px" => 101.6 / 96.0 * value,
js_word!("q") => match from_unit {
js_word!("cm") => 40.0 * value,
js_word!("mm") => 4.0 * value,
js_word!("q") => value,
js_word!("in") => 101.6 * value,
js_word!("pc") => 101.6 / 6.0 * value,
js_word!("pt") => 101.6 / 72.0 * value,
js_word!("px") => 101.6 / 96.0 * value,
_ => {
unreachable!()
}
},
"in" => match from_unit {
"cm" => value / 2.54,
"mm" => value / 25.4,
"q" => value / 101.6,
"in" => value,
"pc" => value / 6.0,
"pt" => value / 72.0,
"px" => value / 96.0,
js_word!("in") => match from_unit {
js_word!("cm") => value / 2.54,
js_word!("mm") => value / 25.4,
js_word!("q") => value / 101.6,
js_word!("in") => value,
js_word!("pc") => value / 6.0,
js_word!("pt") => value / 72.0,
js_word!("px") => value / 96.0,
_ => {
unreachable!()
}
},
"pc" => match from_unit {
"cm" => 6.0 / 2.54 * value,
"mm" => 6.0 / 25.4 * value,
"q" => 6.0 / 101.6 * value,
"in" => 6.0 * value,
"pc" => value,
"pt" => 6.0 / 72.0 * value,
"px" => 6.0 / 96.0 * value,
js_word!("pc") => match from_unit {
js_word!("cm") => 6.0 / 2.54 * value,
js_word!("mm") => 6.0 / 25.4 * value,
js_word!("q") => 6.0 / 101.6 * value,
js_word!("in") => 6.0 * value,
js_word!("pc") => value,
js_word!("pt") => 6.0 / 72.0 * value,
js_word!("px") => 6.0 / 96.0 * value,
_ => {
unreachable!()
}
},
"pt" => match from_unit {
"cm" => 72.0 / 2.54 * value,
"mm" => 72.0 / 25.4 * value,
"q" => 72.0 / 101.6 * value,
"in" => 72.0 * value,
"pc" => 12.0 * value,
"pt" => value,
"px" => 0.75 * value,
js_word!("pt") => match from_unit {
js_word!("cm") => 72.0 / 2.54 * value,
js_word!("mm") => 72.0 / 25.4 * value,
js_word!("q") => 72.0 / 101.6 * value,
js_word!("in") => 72.0 * value,
js_word!("pc") => 12.0 * value,
js_word!("pt") => value,
js_word!("px") => 0.75 * value,
_ => {
unreachable!()
}
},
"px" => match from_unit {
"cm" => 96.0 / 2.54 * value,
"mm" => 96.0 / 25.4 * value,
"q" => 96.0 / 101.6 * value,
"in" => 96.0 * value,
"pc" => 16.0 * value,
"pt" => 96.0 / 72.0 * value,
"px" => value,
js_word!("px") => match from_unit {
js_word!("cm") => 96.0 / 2.54 * value,
js_word!("mm") => 96.0 / 25.4 * value,
js_word!("q") => 96.0 / 101.6 * value,
js_word!("in") => 96.0 * value,
js_word!("pc") => 16.0 * value,
js_word!("pt") => 96.0 / 72.0 * value,
js_word!("px") => value,
_ => {
unreachable!()
}
@ -146,13 +147,13 @@ impl VisitMut for CompressLength {
fn visit_mut_length(&mut self, length: &mut Length) {
length.visit_mut_children_with(self);
let from = &*length.unit.value.to_lowercase();
let from = length.unit.value.to_ascii_lowercase();
let value = length.value.value;
match from {
"cm" => {
js_word!("cm") => {
if value % 2.54 == 0.0 {
let new_value = self.convert(value, from, "in");
let new_value = self.convert(value, from, js_word!("in"));
length.value = Number {
span: length.value.span,
@ -165,7 +166,7 @@ impl VisitMut for CompressLength {
raw: None,
};
} else if value <= 0.1 {
let new_value = self.convert(value, from, "mm");
let new_value = self.convert(value, from, js_word!("mm"));
length.value = Number {
span: length.value.span,
@ -179,9 +180,9 @@ impl VisitMut for CompressLength {
};
}
}
"mm" => {
js_word!("mm") => {
if value % 25.4 == 0.0 {
let new_value = self.convert(value, from, "in");
let new_value = self.convert(value, from, js_word!("in"));
length.value = Number {
span: length.value.span,
@ -194,7 +195,7 @@ impl VisitMut for CompressLength {
raw: None,
};
} else if value % 10.0 == 0.0 {
let new_value = self.convert(value, from, "cm");
let new_value = self.convert(value, from, js_word!("cm"));
length.value = Number {
span: length.value.span,
@ -208,9 +209,9 @@ impl VisitMut for CompressLength {
};
}
}
"q" => {
js_word!("q") => {
if value > 80.0 && value % 40.0 == 0.0 {
let new_value = self.convert(value, from, "cm");
let new_value = self.convert(value, from, js_word!("cm"));
length.value = Number {
span: length.value.span,
@ -223,7 +224,7 @@ impl VisitMut for CompressLength {
raw: None,
};
} else if value % 101.6 == 0.0 {
let new_value = self.convert(value, from, "in");
let new_value = self.convert(value, from, js_word!("in"));
length.value = Number {
span: length.value.span,
@ -237,9 +238,9 @@ impl VisitMut for CompressLength {
};
}
}
"pc" => {
js_word!("pc") => {
if value % 6.0 == 0.0 {
let new_value = self.convert(value, from, "in");
let new_value = self.convert(value, from, js_word!("in"));
length.value = Number {
span: length.value.span,
@ -253,9 +254,9 @@ impl VisitMut for CompressLength {
};
}
}
"pt" => {
js_word!("pt") => {
if value % 72.0 == 0.0 {
let new_value = self.convert(value, from, "in");
let new_value = self.convert(value, from, js_word!("in"));
length.value = Number {
span: length.value.span,
@ -268,7 +269,7 @@ impl VisitMut for CompressLength {
raw: None,
};
} else if value % 12.0 == 0.0 {
let new_value = self.convert(value, from, "pc");
let new_value = self.convert(value, from, js_word!("pc"));
length.value = Number {
span: length.value.span,
@ -281,7 +282,7 @@ impl VisitMut for CompressLength {
raw: None,
};
} else if value % 0.75 == 0.0 {
let new_value = self.convert(value, from, "px");
let new_value = self.convert(value, from, js_word!("px"));
length.value = Number {
span: length.value.span,

View File

@ -1,3 +1,4 @@
use swc_atoms::js_word;
use swc_common::{EqIgnoreSpan, DUMMY_SP};
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -131,7 +132,9 @@ impl VisitMut for CompressSelector {
});
}
// `even` => `2n`
AnPlusB::Ident(Ident { value, span, .. }) if &*value.to_lowercase() == "even" => {
AnPlusB::Ident(Ident { value, span, .. })
if value.to_ascii_lowercase() == js_word!("even") =>
{
*an_plus_b = AnPlusB::AnPlusBNotation(AnPlusBNotation {
span: *span,
a: Some(2),
@ -181,8 +184,11 @@ impl VisitMut for CompressSelector {
match &subclass_selector {
SubclassSelector::PseudoElement(PseudoElementSelector { name, span, .. }) => {
match &*name.value.to_lowercase() {
"before" | "after" | "first-letter" | "first-line" => {
match name.value.to_ascii_lowercase() {
js_word!("before")
| js_word!("after")
| js_word!("first-letter")
| js_word!("first-line") => {
*subclass_selector = SubclassSelector::PseudoClass(PseudoClassSelector {
span: *span,
name: name.clone(),
@ -197,7 +203,9 @@ impl VisitMut for CompressSelector {
children: Some(children),
span,
..
}) if &*name.value.to_lowercase() == "nth-child" && children.len() == 1 => {
}) if name.value.to_ascii_lowercase() == js_word!("nth-child")
&& children.len() == 1 =>
{
match children.get(0) {
Some(PseudoClassSelectorChildren::AnPlusB(AnPlusB::AnPlusBNotation(
AnPlusBNotation {
@ -210,7 +218,7 @@ impl VisitMut for CompressSelector {
span: *span,
name: Ident {
span: DUMMY_SP,
value: "first-child".into(),
value: js_word!("first-child"),
raw: None,
},
children: None,
@ -224,7 +232,9 @@ impl VisitMut for CompressSelector {
children: Some(children),
span,
..
}) if &*name.value.to_lowercase() == "nth-last-child" && children.len() == 1 => {
}) if name.value.to_ascii_lowercase() == js_word!("nth-last-child")
&& children.len() == 1 =>
{
match children.get(0) {
Some(PseudoClassSelectorChildren::AnPlusB(AnPlusB::AnPlusBNotation(
AnPlusBNotation {
@ -251,7 +261,9 @@ impl VisitMut for CompressSelector {
children: Some(children),
span,
..
}) if &*name.value.to_lowercase() == "nth-of-type" && children.len() == 1 => {
}) if name.value.to_ascii_lowercase() == js_word!("nth-of-type")
&& children.len() == 1 =>
{
match children.get(0) {
Some(PseudoClassSelectorChildren::AnPlusB(AnPlusB::AnPlusBNotation(
AnPlusBNotation {
@ -264,7 +276,7 @@ impl VisitMut for CompressSelector {
span: *span,
name: Ident {
span: DUMMY_SP,
value: "first-of-type".into(),
value: js_word!("first-of-type"),
raw: None,
},
children: None,
@ -278,7 +290,9 @@ impl VisitMut for CompressSelector {
children: Some(children),
span,
..
}) if &*name.value.to_lowercase() == "nth-last-of-type" && children.len() == 1 => {
}) if name.value.to_ascii_lowercase() == js_word!("nth-last-of-type")
&& children.len() == 1 =>
{
match children.get(0) {
Some(PseudoClassSelectorChildren::AnPlusB(AnPlusB::AnPlusBNotation(
AnPlusBNotation {
@ -291,7 +305,7 @@ impl VisitMut for CompressSelector {
span: *span,
name: Ident {
span: DUMMY_SP,
value: "last-of-type".into(),
value: js_word!("last-of-type"),
raw: None,
},
children: None,
@ -308,8 +322,13 @@ impl VisitMut for CompressSelector {
match &pseudo_class_selector.name {
Ident { value, .. }
if matches!(
&*value.to_lowercase(),
"not" | "is" | "where" | "matches" | "-moz-any" | "-webkit-any"
value.to_ascii_lowercase(),
js_word!("not")
| js_word!("is")
| js_word!("where")
| js_word!("matches")
| js_word!("-moz-any")
| js_word!("-webkit-any")
) =>
{
let old_in_logic_combinator = self.in_logic_combinator;

View File

@ -1,3 +1,4 @@
use swc_atoms::js_word;
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -11,8 +12,8 @@ impl VisitMut for CompressTime {
fn visit_mut_time(&mut self, time: &mut Time) {
time.visit_mut_children_with(self);
match &*time.unit.value.to_lowercase() {
"ms" if time.value.value == 0.0 || time.value.value >= 100.0 => {
match time.unit.value.to_ascii_lowercase() {
js_word!("ms") if time.value.value == 0.0 || time.value.value >= 100.0 => {
let new_value = time.value.value / 1000.0;
time.value = Number {
@ -26,7 +27,7 @@ impl VisitMut for CompressTime {
raw: None,
};
}
"s" if time.value.value > 0.0 && time.value.value < 0.1 => {
js_word!("s") if time.value.value > 0.0 && time.value.value < 0.1 => {
let new_value = time.value.value * 1000.0;
time.value = Number {

View File

@ -1,3 +1,4 @@
use swc_atoms::js_word;
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -18,7 +19,9 @@ impl VisitMut for CompressTransformFunction {
name,
value: function_value,
..
}) if &*name.value.to_lowercase() == "translate" && function_value.len() == 3 => {
}) if name.value.to_ascii_lowercase() == js_word!("translate")
&& function_value.len() == 3 =>
{
match (function_value.get(0), function_value.get(2)) {
(
Some(first),
@ -50,7 +53,9 @@ impl VisitMut for CompressTransformFunction {
name,
value: function_value,
..
}) if &*name.value.to_lowercase() == "translate3d" && function_value.len() == 5 => {
}) if name.value.to_ascii_lowercase() == js_word!("translate3d")
&& function_value.len() == 5 =>
{
match (
function_value.get(0),
function_value.get(2),
@ -81,7 +86,9 @@ impl VisitMut for CompressTransformFunction {
name,
value: function_value,
..
}) if &*name.value.to_lowercase() == "scale" && function_value.len() == 3 => {
}) if name.value.to_ascii_lowercase() == js_word!("scale")
&& function_value.len() == 3 =>
{
match (function_value.get(0), function_value.get(2)) {
(
Some(
@ -132,7 +139,9 @@ impl VisitMut for CompressTransformFunction {
name,
value: function_value,
..
}) if &*name.value.to_lowercase() == "scale3d" && function_value.len() == 5 => {
}) if name.value.to_ascii_lowercase() == js_word!("scale3d")
&& function_value.len() == 5 =>
{
match (
function_value.get(0),
function_value.get(2),
@ -199,7 +208,9 @@ impl VisitMut for CompressTransformFunction {
name,
value: function_value,
..
}) if &*name.value.to_lowercase() == "matrix3d" && function_value.len() == 31 => {
}) if name.value.to_ascii_lowercase() == js_word!("matrix3d")
&& function_value.len() == 31 =>
{
match (
function_value.get(0),
function_value.get(1),
@ -312,7 +323,9 @@ impl VisitMut for CompressTransformFunction {
name,
value: function_value,
..
}) if &*name.value.to_lowercase() == "rotate3d" && function_value.len() == 7 => {
}) if name.value.to_ascii_lowercase() == js_word!("rotate3d")
&& function_value.len() == 7 =>
{
match (
function_value.get(0),
function_value.get(2),
@ -392,7 +405,9 @@ impl VisitMut for CompressTransformFunction {
name,
value: function_value,
..
}) if &*name.value.to_lowercase() == "rotatez" && function_value.len() == 1 => {
}) if name.value.to_ascii_lowercase() == js_word!("rotatez")
&& function_value.len() == 1 =>
{
*name = Ident {
span: name.span,
value: "rotate".into(),
@ -404,7 +419,9 @@ impl VisitMut for CompressTransformFunction {
name,
value: function_value,
..
}) if &*name.value.to_lowercase() == "skew" && function_value.len() == 3 => {
}) if name.value.to_ascii_lowercase() == js_word!("skew")
&& function_value.len() == 3 =>
{
match (function_value.get(0), function_value.get(2)) {
(
Some(first),

View File

@ -1,3 +1,4 @@
use swc_atoms::js_word;
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -11,7 +12,7 @@ impl VisitMut for CompressUrl {
fn visit_mut_url(&mut self, url: &mut Url) {
url.visit_mut_children_with(self);
if &*url.name.value.to_lowercase() != "url" {
if url.name.value.to_ascii_lowercase() != js_word!("url") {
return;
}

View File

@ -2066,7 +2066,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:24:1]
24 | @unknown {s{p:v}}
: ^
@ -2216,7 +2216,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:25:1]
25 | @unknown x y {s{p:v}}
: ^
@ -2420,7 +2420,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:26:1]
26 | @unknown x, y f(1) {s{p:v}}
: ^
@ -2636,7 +2636,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:27:1]
27 | @unknown x, y f(1+2) {s{p:v}}
: ^
@ -3056,7 +3056,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:29:1]
29 | @unknown/*test*/{/*test*/s/*test*/{/*test*/p/*test*/:/*test*/v/*test*/}/*test*/}
: ^
@ -3194,7 +3194,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:30:1]
30 | @unknown /*test*/x/*test*/ y/*test*/{/*test*/s/*test*/{/*test*/p/*test*/:/*test*/v/*test*/}/*test*/}
: ^
@ -3308,7 +3308,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:32:1]
32 | @unknown { s { p : v } }
: ^
@ -3542,7 +3542,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:33:1]
33 | @unknown x y { s { p : v } }
: ^
@ -3866,7 +3866,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:34:1]
34 | @unknown x , y f( 1 ) { s { p : v } }
: ^
@ -4214,7 +4214,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:35:1]
35 | @unknown x , y f( 1 2 ) { s { p : v } }
: ^
@ -4601,7 +4601,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:43:5]
43 | @unknown {s{p:v}}
: ^
@ -4776,7 +4776,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:47:5]
47 | @unknown {s{p:v}}
: ^
@ -5080,7 +5080,7 @@
: ^
`----
x Ident { value: Atom('s' type=inline), raw: Atom('s' type=inline) }
x Ident { value: Atom('s' type=static), raw: Atom('s' type=static) }
,-[$DIR/tests/fixture/at-rule/unknown/input.css:53:5]
53 | @unknown {s{p:v}}
: ^

View File

@ -578,7 +578,7 @@
: ^^^^
`----
x Dimension { value: 30.0, raw_value: Atom('30' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 30.0, raw_value: Atom('30' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
6 | --width: calc(10% + 30px);
: ^^^^

View File

@ -473,7 +473,7 @@
: ^^^^
`----
x Dimension { value: 75.0, raw_value: Atom('75' type=inline), unit: Atom('ms' type=inline), raw_unit: Atom('ms' type=inline), type_flag: Integer }
x Dimension { value: 75.0, raw_value: Atom('75' type=inline), unit: Atom('ms' type=static), raw_unit: Atom('ms' type=static), type_flag: Integer }
,-[$DIR/tests/fixture/rome/custom-properties/input.css:9:5]
9 | --time: 75ms;
: ^^^^

View File

@ -119,7 +119,7 @@
: ^^^
`----
x Dimension { value: 2.0, raw_value: Atom('2' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 2.0, raw_value: Atom('2' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/fixture/rome/functions/input.css:2:5]
2 | --fancy: 2px;
: ^^^

View File

@ -3608,7 +3608,7 @@
: ^^^^^
`----
x Dimension { value: 100.0, raw_value: Atom('100' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 100.0, raw_value: Atom('100' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/fixture/style-block/input.css:92:9]
92 | height: 100px;
: ^^^^^
@ -4450,7 +4450,7 @@
: ^^^^
`----
x Dimension { value: 16.0, raw_value: Atom('16' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 16.0, raw_value: Atom('16' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/fixture/style-block/input.css:111:9]
111 | width: 16px;
: ^^^^
@ -4523,7 +4523,7 @@
: ^^^^
`----
x Dimension { value: 16.0, raw_value: Atom('16' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 16.0, raw_value: Atom('16' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/fixture/style-block/input.css:112:9]
112 | height: 16px;
: ^^^^

View File

@ -3479,7 +3479,7 @@
: ^^^^
`----
x Dimension { value: 16.0, raw_value: Atom('16' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 16.0, raw_value: Atom('16' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/fixture/value/custom-property/input.css:53:9]
53 | width: 16px;
: ^^^^
@ -3552,7 +3552,7 @@
: ^^^^
`----
x Dimension { value: 16.0, raw_value: Atom('16' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 16.0, raw_value: Atom('16' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/fixture/value/custom-property/input.css:54:9]
54 | height: 16px;
: ^^^^

View File

@ -47,7 +47,7 @@
: ^^^^^^^
`----
x Ident { value: Atom('inherit' type=inline), raw: Atom('inherit' type=inline) }
x Ident { value: Atom('inherit' type=static), raw: Atom('inherit' type=static) }
,-[$DIR/tests/recovery/at-rule/keyframes/custom-ident-2/input.css:1:1]
1 | @keyframes inherit {}
: ^^^^^^^

View File

@ -47,7 +47,7 @@
: ^^^^^
`----
x Ident { value: Atom('unset' type=inline), raw: Atom('unset' type=inline) }
x Ident { value: Atom('unset' type=static), raw: Atom('unset' type=static) }
,-[$DIR/tests/recovery/at-rule/keyframes/custom-ident-3/input.css:1:1]
1 | @keyframes unset {}
: ^^^^^

View File

@ -47,7 +47,7 @@
: ^^^^^^^
`----
x Ident { value: Atom('initial' type=inline), raw: Atom('initial' type=inline) }
x Ident { value: Atom('initial' type=static), raw: Atom('initial' type=static) }
,-[$DIR/tests/recovery/at-rule/keyframes/custom-ident/input.css:1:1]
1 | @keyframes initial {}
: ^^^^^^^

View File

@ -50,7 +50,7 @@
: ^^^^^^^
`----
x Ident { value: Atom('initial' type=inline), raw: Atom('initial' type=inline) }
x Ident { value: Atom('initial' type=static), raw: Atom('initial' type=static) }
,-[$DIR/tests/recovery/at-rule/keyframes/keyframe-css-wide-keywords/input.css:1:1]
1 | @keyframes initial {}
: ^^^^^^^
@ -116,7 +116,7 @@
: ^^^^^^^
`----
x Ident { value: Atom('inherit' type=inline), raw: Atom('inherit' type=inline) }
x Ident { value: Atom('inherit' type=static), raw: Atom('inherit' type=static) }
,-[$DIR/tests/recovery/at-rule/keyframes/keyframe-css-wide-keywords/input.css:2:1]
2 | @keyframes inherit {}
: ^^^^^^^
@ -182,7 +182,7 @@
: ^^^^^
`----
x Ident { value: Atom('unset' type=inline), raw: Atom('unset' type=inline) }
x Ident { value: Atom('unset' type=static), raw: Atom('unset' type=static) }
,-[$DIR/tests/recovery/at-rule/keyframes/keyframe-css-wide-keywords/input.css:3:1]
3 | @keyframes unset {}
: ^^^^^
@ -248,7 +248,7 @@
: ^^^^
`----
x Ident { value: Atom('none' type=inline), raw: Atom('none' type=inline) }
x Ident { value: Atom('none' type=static), raw: Atom('none' type=static) }
,-[$DIR/tests/recovery/at-rule/keyframes/keyframe-css-wide-keywords/input.css:4:1]
4 | @keyframes none {}
: ^^^^

View File

@ -59,7 +59,7 @@
: ^^^^
`----
x Dimension { value: 20.0, raw_value: Atom('20' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 20.0, raw_value: Atom('20' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-name-1/input.css:1:1]
1 | @media (20px: 20px) {}
: ^^^^
@ -95,7 +95,7 @@
: ^^^^
`----
x Dimension { value: 20.0, raw_value: Atom('20' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 20.0, raw_value: Atom('20' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-name-1/input.css:1:1]
1 | @media (20px: 20px) {}
: ^^^^

View File

@ -95,7 +95,7 @@
: ^^^^
`----
x Dimension { value: 20.0, raw_value: Atom('20' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 20.0, raw_value: Atom('20' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-name/input.css:1:1]
1 | @media ("min-width": 20px) {}
: ^^^^

View File

@ -119,7 +119,7 @@
: ^^^^^
`----
x Dimension { value: 600.0, raw_value: Atom('600' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 600.0, raw_value: Atom('600' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-1/input.css:1:1]
1 | @media (height << 600px) {}
: ^^^^^

View File

@ -59,7 +59,7 @@
: ^^^^^
`----
x Dimension { value: 400.0, raw_value: Atom('400' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 400.0, raw_value: Atom('400' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-2/input.css:1:1]
1 | @media (400px > "width" > 700px) {}
: ^^^^^
@ -155,7 +155,7 @@
: ^^^^^
`----
x Dimension { value: 700.0, raw_value: Atom('700' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 700.0, raw_value: Atom('700' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-2/input.css:1:1]
1 | @media (400px > "width" > 700px) {}
: ^^^^^

View File

@ -59,7 +59,7 @@
: ^^^^^
`----
x Dimension { value: 400.0, raw_value: Atom('400' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 400.0, raw_value: Atom('400' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-3/input.css:1:1]
1 | @media (400px > = width > = 700px) {}
: ^^^^^
@ -203,7 +203,7 @@
: ^^^^^
`----
x Dimension { value: 700.0, raw_value: Atom('700' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 700.0, raw_value: Atom('700' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-3/input.css:1:1]
1 | @media (400px > = width > = 700px) {}
: ^^^^^

View File

@ -59,7 +59,7 @@
: ^^^^^
`----
x Dimension { value: 400.0, raw_value: Atom('400' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 400.0, raw_value: Atom('400' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-4/input.css:1:1]
1 | @media (400px >= width ! 700px) {}
: ^^^^^
@ -167,7 +167,7 @@
: ^^^^^
`----
x Dimension { value: 700.0, raw_value: Atom('700' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 700.0, raw_value: Atom('700' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-4/input.css:1:1]
1 | @media (400px >= width ! 700px) {}
: ^^^^^

View File

@ -59,7 +59,7 @@
: ^^^^^
`----
x Dimension { value: 400.0, raw_value: Atom('400' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 400.0, raw_value: Atom('400' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-5/input.css:1:1]
1 | @media (400px <= width >= 700px) {}
: ^^^^^
@ -179,7 +179,7 @@
: ^^^^^
`----
x Dimension { value: 700.0, raw_value: Atom('700' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 700.0, raw_value: Atom('700' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-5/input.css:1:1]
1 | @media (400px <= width >= 700px) {}
: ^^^^^

View File

@ -59,7 +59,7 @@
: ^^^^^
`----
x Dimension { value: 400.0, raw_value: Atom('400' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 400.0, raw_value: Atom('400' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-6/input.css:1:1]
1 | @media (400px >= width <= 700px) {}
: ^^^^^
@ -179,7 +179,7 @@
: ^^^^^
`----
x Dimension { value: 700.0, raw_value: Atom('700' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 700.0, raw_value: Atom('700' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range-6/input.css:1:1]
1 | @media (400px >= width <= 700px) {}
: ^^^^^

View File

@ -107,7 +107,7 @@
: ^^^^^
`----
x Dimension { value: 600.0, raw_value: Atom('600' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 600.0, raw_value: Atom('600' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/feature-range/input.css:1:1]
1 | @media (height + 600px) {}
: ^^^^^

View File

@ -159,7 +159,7 @@
: ^
`----
x Dimension { value: 1024.0, raw_value: Atom('1024' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 1024.0, raw_value: Atom('1024' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/at-rule/media/invalid-nesting/input.css:2:5]
2 | max-inline-size: 1024px;
: ^^^^^^

View File

@ -80,7 +80,7 @@
: ^^^^^
`----
x Ident { value: Atom('layer' type=inline), raw: Atom('layer' type=inline) }
x Ident { value: Atom('layer' type=static), raw: Atom('layer' type=static) }
,-[$DIR/tests/recovery/at-rule/media/media-type/input.css:1:1]
1 | @media only layer {
: ^^^^^

View File

@ -47,7 +47,7 @@
: ^^^^^^^
`----
x Ident { value: Atom('display' type=inline), raw: Atom('display' type=inline) }
x Ident { value: Atom('display' type=static), raw: Atom('display' type=static) }
,-[$DIR/tests/recovery/at-rule/supports/no-parens/input.css:1:1]
1 | @supports display: flex {}
: ^^^^^^^
@ -83,7 +83,7 @@
: ^^^^
`----
x Ident { value: Atom('flex' type=inline), raw: Atom('flex' type=inline) }
x Ident { value: Atom('flex' type=static), raw: Atom('flex' type=static) }
,-[$DIR/tests/recovery/at-rule/supports/no-parens/input.css:1:1]
1 | @supports display: flex {}
: ^^^^

View File

@ -189,7 +189,7 @@
: ^^^^
`----
x Dimension { value: 12.0, raw_value: Atom('12' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 12.0, raw_value: Atom('12' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/function/unclosed-2/input.css:2:5]
2 | grid-template-columns: repeat(4, [col-start] 12px
: ^^^^

View File

@ -117,7 +117,7 @@
: ^^^^^
`----
x Dimension { value: 500.0, raw_value: Atom('500' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 500.0, raw_value: Atom('500' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/function/unclosed/input.css:2:5]
2 | width: min(500px;
: ^^^^^

View File

@ -50,7 +50,7 @@
: ^^^^^^^^^^
`----
x Function { value: Atom('nth-child' type=dynamic), raw: Atom('nth-child' type=dynamic) }
x Function { value: Atom('nth-child' type=static), raw: Atom('nth-child' type=static) }
,-[$DIR/tests/recovery/selector/pseudo-class/invalid-function/input.css:1:1]
1 | : nth-child(2) {
: ^^^^^^^^^^

View File

@ -50,7 +50,7 @@
: ^^^^^^^^^^^
`----
x Ident { value: Atom('first-child' type=dynamic), raw: Atom('first-child' type=dynamic) }
x Ident { value: Atom('first-child' type=static), raw: Atom('first-child' type=static) }
,-[$DIR/tests/recovery/selector/pseudo-class/invalid-ident/input.css:1:1]
1 | : first-child {
: ^^^^^^^^^^^

View File

@ -232,7 +232,7 @@
: ^^^
`----
x Dimension { value: 7.0, raw_value: Atom('7' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 7.0, raw_value: Atom('7' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/vercel/004/input.css:4:5]
4 | border-radius: 7px;
: ^^^

View File

@ -172,7 +172,7 @@
: ^^^
`----
x Dimension { value: 7.0, raw_value: Atom('7' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
x Dimension { value: 7.0, raw_value: Atom('7' type=inline), unit: Atom('px' type=static), raw_unit: Atom('px' type=static), type_flag: Integer }
,-[$DIR/tests/recovery/vercel/005/input.css:4:5]
4 | border-radius: 7px;
: ^^^

View File

@ -2,6 +2,7 @@
use once_cell::sync::Lazy;
use serde::{Deserialize, Serialize};
use swc_atoms::JsWord;
use swc_common::collections::AHashMap;
use swc_css_ast::*;
use swc_css_visit::{VisitMut, VisitMutWith};
@ -142,8 +143,8 @@ pub struct NamedColor {
pub rgb: Vec<u8>,
}
pub static NAMED_COLORS: Lazy<AHashMap<String, NamedColor>> = Lazy::new(|| {
let named_colors: AHashMap<String, NamedColor> =
pub static NAMED_COLORS: Lazy<AHashMap<JsWord, NamedColor>> = Lazy::new(|| {
let named_colors: AHashMap<JsWord, NamedColor> =
serde_json::from_str(include_str!("./named-colors.json"))
.expect("failed to parse named-colors.json for html entities");

View File

@ -154,7 +154,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2,
),
VarUsageInfo {

View File

@ -172008,7 +172008,7 @@ TestSnapshot {
),
(
(
Atom('block' type=inline),
Atom('block' type=static),
#1683,
),
VarUsageInfo {
@ -172046,7 +172046,7 @@ TestSnapshot {
),
(
(
Atom('block' type=inline),
Atom('block' type=static),
#1705,
),
VarUsageInfo {
@ -172084,7 +172084,7 @@ TestSnapshot {
),
(
(
Atom('block' type=inline),
Atom('block' type=static),
#1723,
),
VarUsageInfo {
@ -172200,7 +172200,7 @@ TestSnapshot {
),
(
(
Atom('bold' type=inline),
Atom('bold' type=static),
#1271,
),
VarUsageInfo {
@ -226600,7 +226600,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#496,
),
VarUsageInfo {
@ -226640,7 +226640,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#498,
),
VarUsageInfo {
@ -226680,7 +226680,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#964,
),
VarUsageInfo {
@ -226718,7 +226718,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1011,
),
VarUsageInfo {
@ -226756,7 +226756,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1276,
),
VarUsageInfo {
@ -226796,7 +226796,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1450,
),
VarUsageInfo {
@ -226834,7 +226834,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1461,
),
VarUsageInfo {
@ -226872,7 +226872,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1764,
),
VarUsageInfo {
@ -319700,7 +319700,7 @@ TestSnapshot {
),
(
(
Atom('matches' type=inline),
Atom('matches' type=static),
#1755,
),
VarUsageInfo {
@ -356728,7 +356728,7 @@ TestSnapshot {
),
(
(
Atom('pc' type=inline),
Atom('pc' type=static),
#1855,
),
VarUsageInfo {
@ -365148,7 +365148,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#880,
),
VarUsageInfo {
@ -365188,7 +365188,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1332,
),
VarUsageInfo {
@ -365228,7 +365228,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2022,
),
VarUsageInfo {
@ -365268,7 +365268,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2092,
),
VarUsageInfo {
@ -365308,7 +365308,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2094,
),
VarUsageInfo {
@ -365348,7 +365348,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2119,
),
VarUsageInfo {
@ -365386,7 +365386,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2217,
),
VarUsageInfo {
@ -365426,7 +365426,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2225,
),
VarUsageInfo {
@ -365466,7 +365466,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2287,
),
VarUsageInfo {
@ -365506,7 +365506,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2413,
),
VarUsageInfo {
@ -365544,7 +365544,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2415,
),
VarUsageInfo {
@ -365584,7 +365584,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2502,
),
VarUsageInfo {
@ -374370,7 +374370,7 @@ TestSnapshot {
),
(
(
Atom('repeat' type=inline),
Atom('repeat' type=static),
#873,
),
VarUsageInfo {
@ -374410,7 +374410,7 @@ TestSnapshot {
),
(
(
Atom('repeat' type=inline),
Atom('repeat' type=static),
#883,
),
VarUsageInfo {
@ -374448,7 +374448,7 @@ TestSnapshot {
),
(
(
Atom('repeat' type=inline),
Atom('repeat' type=static),
#1100,
),
VarUsageInfo {
@ -374488,7 +374488,7 @@ TestSnapshot {
),
(
(
Atom('repeat' type=inline),
Atom('repeat' type=static),
#1309,
),
VarUsageInfo {
@ -374528,7 +374528,7 @@ TestSnapshot {
),
(
(
Atom('repeat' type=inline),
Atom('repeat' type=static),
#1749,
),
VarUsageInfo {
@ -383344,7 +383344,7 @@ TestSnapshot {
),
(
(
Atom('round' type=inline),
Atom('round' type=static),
#929,
),
VarUsageInfo {
@ -385188,7 +385188,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#272,
),
VarUsageInfo {
@ -385228,7 +385228,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1105,
),
VarUsageInfo {
@ -385268,7 +385268,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1601,
),
VarUsageInfo {
@ -385308,7 +385308,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1612,
),
VarUsageInfo {
@ -385348,7 +385348,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1613,
),
VarUsageInfo {
@ -385386,7 +385386,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1747,
),
VarUsageInfo {
@ -385426,7 +385426,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1833,
),
VarUsageInfo {
@ -385466,7 +385466,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2322,
),
VarUsageInfo {
@ -385506,7 +385506,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2328,
),
VarUsageInfo {
@ -394146,7 +394146,7 @@ TestSnapshot {
),
(
(
Atom('skew' type=inline),
Atom('skew' type=static),
#876,
),
VarUsageInfo {
@ -395818,7 +395818,7 @@ TestSnapshot {
),
(
(
Atom('space' type=inline),
Atom('space' type=static),
#1050,
),
VarUsageInfo {
@ -395856,7 +395856,7 @@ TestSnapshot {
),
(
(
Atom('space' type=inline),
Atom('space' type=static),
#1381,
),
VarUsageInfo {
@ -396996,7 +396996,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#472,
),
VarUsageInfo {
@ -397036,7 +397036,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#473,
),
VarUsageInfo {
@ -397076,7 +397076,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#496,
),
VarUsageInfo {
@ -397114,7 +397114,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#644,
),
VarUsageInfo {
@ -397152,7 +397152,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#964,
),
VarUsageInfo {
@ -397190,7 +397190,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1011,
),
VarUsageInfo {
@ -397228,7 +397228,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1022,
),
VarUsageInfo {
@ -397266,7 +397266,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1341,
),
VarUsageInfo {
@ -397304,7 +397304,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1395,
),
VarUsageInfo {
@ -397342,7 +397342,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1450,
),
VarUsageInfo {

View File

@ -1520,7 +1520,7 @@ TestSnapshot {
),
(
(
Atom('opacity' type=inline),
Atom('opacity' type=static),
#4,
),
VarUsageInfo {
@ -1558,7 +1558,7 @@ TestSnapshot {
),
(
(
Atom('opacity' type=inline),
Atom('opacity' type=static),
#5,
),
VarUsageInfo {
@ -1712,7 +1712,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2,
),
VarUsageInfo {
@ -1752,7 +1752,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#4,
),
VarUsageInfo {
@ -1790,7 +1790,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#5,
),
VarUsageInfo {

View File

@ -12452,7 +12452,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#37,
),
VarUsageInfo {

View File

@ -7082,7 +7082,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#13,
),
VarUsageInfo {
@ -7120,7 +7120,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#18,
),
VarUsageInfo {
@ -7158,7 +7158,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#22,
),
VarUsageInfo {
@ -7196,7 +7196,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#25,
),
VarUsageInfo {
@ -7234,7 +7234,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#29,
),
VarUsageInfo {
@ -7272,7 +7272,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#33,
),
VarUsageInfo {
@ -7310,7 +7310,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#37,
),
VarUsageInfo {
@ -7348,7 +7348,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#42,
),
VarUsageInfo {
@ -7386,7 +7386,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#45,
),
VarUsageInfo {
@ -7424,7 +7424,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#49,
),
VarUsageInfo {
@ -7462,7 +7462,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#56,
),
VarUsageInfo {
@ -7500,7 +7500,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#60,
),
VarUsageInfo {
@ -7538,7 +7538,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#64,
),
VarUsageInfo {
@ -7576,7 +7576,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#69,
),
VarUsageInfo {
@ -7614,7 +7614,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#72,
),
VarUsageInfo {
@ -7652,7 +7652,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#76,
),
VarUsageInfo {
@ -17574,7 +17574,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#119,
),
VarUsageInfo {
@ -18796,7 +18796,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#9,
),
VarUsageInfo {
@ -18834,7 +18834,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#13,
),
VarUsageInfo {
@ -18872,7 +18872,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#18,
),
VarUsageInfo {
@ -18910,7 +18910,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#22,
),
VarUsageInfo {
@ -18948,7 +18948,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#25,
),
VarUsageInfo {
@ -18986,7 +18986,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#29,
),
VarUsageInfo {
@ -19024,7 +19024,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#33,
),
VarUsageInfo {
@ -19062,7 +19062,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#37,
),
VarUsageInfo {
@ -19100,7 +19100,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#42,
),
VarUsageInfo {
@ -19138,7 +19138,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#45,
),
VarUsageInfo {
@ -19176,7 +19176,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#49,
),
VarUsageInfo {
@ -19214,7 +19214,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#56,
),
VarUsageInfo {
@ -19252,7 +19252,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#60,
),
VarUsageInfo {
@ -19290,7 +19290,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#64,
),
VarUsageInfo {
@ -19328,7 +19328,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#69,
),
VarUsageInfo {
@ -19366,7 +19366,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#72,
),
VarUsageInfo {
@ -19404,7 +19404,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#76,
),
VarUsageInfo {
@ -19442,7 +19442,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#82,
),
VarUsageInfo {
@ -19480,7 +19480,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#83,
),
VarUsageInfo {

View File

@ -6392,7 +6392,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#7,
),
VarUsageInfo {
@ -12104,7 +12104,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#19,
),
VarUsageInfo {
@ -12142,7 +12142,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#26,
),
VarUsageInfo {
@ -23054,7 +23054,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#151,
),
VarUsageInfo {

View File

@ -60178,7 +60178,7 @@ TestSnapshot {
),
(
(
Atom('pc' type=inline),
Atom('pc' type=static),
#127,
),
VarUsageInfo {
@ -61002,7 +61002,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#127,
),
VarUsageInfo {
@ -62960,7 +62960,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#436,
),
VarUsageInfo {

View File

@ -32322,7 +32322,7 @@ TestSnapshot {
),
(
(
Atom('matches' type=inline),
Atom('matches' type=static),
#190,
),
VarUsageInfo {
@ -34978,7 +34978,7 @@ TestSnapshot {
),
(
(
Atom('ms' type=inline),
Atom('ms' type=static),
#97,
),
VarUsageInfo {
@ -37932,7 +37932,7 @@ TestSnapshot {
),
(
(
Atom('overflow' type=dynamic),
Atom('overflow' type=static),
#152,
),
VarUsageInfo {
@ -41112,7 +41112,7 @@ TestSnapshot {
),
(
(
Atom('round' type=inline),
Atom('round' type=static),
#3,
),
VarUsageInfo {
@ -41190,7 +41190,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#64,
),
VarUsageInfo {
@ -41228,7 +41228,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#66,
),
VarUsageInfo {
@ -41266,7 +41266,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#97,
),
VarUsageInfo {
@ -41304,7 +41304,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#156,
),
VarUsageInfo {
@ -41342,7 +41342,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#301,
),
VarUsageInfo {

View File

@ -65664,7 +65664,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#49,
),
VarUsageInfo {
@ -65702,7 +65702,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#50,
),
VarUsageInfo {
@ -65740,7 +65740,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#699,
),
VarUsageInfo {
@ -65778,7 +65778,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#700,
),
VarUsageInfo {
@ -65818,7 +65818,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#701,
),
VarUsageInfo {
@ -65858,7 +65858,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#762,
),
VarUsageInfo {
@ -65896,7 +65896,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#763,
),
VarUsageInfo {
@ -65936,7 +65936,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#765,
),
VarUsageInfo {
@ -65974,7 +65974,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#766,
),
VarUsageInfo {
@ -66014,7 +66014,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#774,
),
VarUsageInfo {
@ -66054,7 +66054,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#792,
),
VarUsageInfo {
@ -66094,7 +66094,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#800,
),
VarUsageInfo {
@ -144850,7 +144850,7 @@ TestSnapshot {
),
(
(
Atom('px' type=inline),
Atom('px' type=static),
#48,
),
VarUsageInfo {
@ -144888,7 +144888,7 @@ TestSnapshot {
),
(
(
Atom('px' type=inline),
Atom('px' type=static),
#559,
),
VarUsageInfo {
@ -144928,7 +144928,7 @@ TestSnapshot {
),
(
(
Atom('px' type=inline),
Atom('px' type=static),
#561,
),
VarUsageInfo {
@ -145128,7 +145128,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#289,
),
VarUsageInfo {
@ -145168,7 +145168,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#555,
),
VarUsageInfo {
@ -145996,7 +145996,7 @@ TestSnapshot {
),
(
(
Atom('rad' type=inline),
Atom('rad' type=static),
#672,
),
VarUsageInfo {
@ -153506,7 +153506,7 @@ TestSnapshot {
),
(
(
Atom('rotate' type=inline),
Atom('rotate' type=static),
#465,
),
VarUsageInfo {
@ -153544,7 +153544,7 @@ TestSnapshot {
),
(
(
Atom('rotate' type=inline),
Atom('rotate' type=static),
#671,
),
VarUsageInfo {
@ -153696,7 +153696,7 @@ TestSnapshot {
),
(
(
Atom('round' type=inline),
Atom('round' type=static),
#42,
),
VarUsageInfo {
@ -153734,7 +153734,7 @@ TestSnapshot {
),
(
(
Atom('round' type=inline),
Atom('round' type=static),
#471,
),
VarUsageInfo {
@ -153772,7 +153772,7 @@ TestSnapshot {
),
(
(
Atom('round' type=inline),
Atom('round' type=static),
#530,
),
VarUsageInfo {
@ -154386,7 +154386,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#72,
),
VarUsageInfo {
@ -154426,7 +154426,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#466,
),
VarUsageInfo {
@ -154466,7 +154466,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#672,
),
VarUsageInfo {
@ -154784,7 +154784,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#109,
),
VarUsageInfo {
@ -154824,7 +154824,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#110,
),
VarUsageInfo {
@ -154864,7 +154864,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#148,
),
VarUsageInfo {
@ -154904,7 +154904,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#473,
),
VarUsageInfo {
@ -154942,7 +154942,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#476,
),
VarUsageInfo {
@ -154980,7 +154980,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#492,
),
VarUsageInfo {
@ -155018,7 +155018,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#532,
),
VarUsageInfo {
@ -155056,7 +155056,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#535,
),
VarUsageInfo {
@ -155094,7 +155094,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#549,
),
VarUsageInfo {
@ -155132,7 +155132,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#677,
),
VarUsageInfo {
@ -160020,7 +160020,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#230,
),
VarUsageInfo {
@ -160058,7 +160058,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#420,
),
VarUsageInfo {
@ -160096,7 +160096,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#694,
),
VarUsageInfo {
@ -160136,7 +160136,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#699,
),
VarUsageInfo {
@ -160174,7 +160174,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#701,
),
VarUsageInfo {
@ -160212,7 +160212,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#708,
),
VarUsageInfo {
@ -160250,7 +160250,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#712,
),
VarUsageInfo {
@ -160288,7 +160288,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#728,
),
VarUsageInfo {
@ -160326,7 +160326,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#735,
),
VarUsageInfo {
@ -160366,7 +160366,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#737,
),
VarUsageInfo {
@ -160404,7 +160404,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#749,
),
VarUsageInfo {
@ -160442,7 +160442,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#756,
),
VarUsageInfo {
@ -160480,7 +160480,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#765,
),
VarUsageInfo {
@ -160518,7 +160518,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#766,
),
VarUsageInfo {
@ -160558,7 +160558,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#774,
),
VarUsageInfo {
@ -160596,7 +160596,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#780,
),
VarUsageInfo {
@ -160634,7 +160634,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#792,
),
VarUsageInfo {
@ -160672,7 +160672,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#800,
),
VarUsageInfo {
@ -160710,7 +160710,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#832,
),
VarUsageInfo {
@ -160748,7 +160748,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#846,
),
VarUsageInfo {
@ -160786,7 +160786,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#862,
),
VarUsageInfo {
@ -160824,7 +160824,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#870,
),
VarUsageInfo {
@ -160862,7 +160862,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#960,
),
VarUsageInfo {
@ -160900,7 +160900,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#963,
),
VarUsageInfo {
@ -160938,7 +160938,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1074,
),
VarUsageInfo {
@ -160976,7 +160976,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1083,
),
VarUsageInfo {

View File

@ -6624,7 +6624,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#89,
),
VarUsageInfo {
@ -6664,7 +6664,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#97,
),
VarUsageInfo {
@ -14388,7 +14388,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#3,
),
VarUsageInfo {
@ -14428,7 +14428,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#5,
),
VarUsageInfo {
@ -14468,7 +14468,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#10,
),
VarUsageInfo {
@ -14506,7 +14506,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#39,
),
VarUsageInfo {
@ -15998,7 +15998,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#89,
),
VarUsageInfo {
@ -16038,7 +16038,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#90,
),
VarUsageInfo {
@ -16078,7 +16078,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#96,
),
VarUsageInfo {

View File

@ -398,7 +398,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#3,
),
VarUsageInfo {

View File

@ -890,7 +890,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1,
),
VarUsageInfo {
@ -930,7 +930,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#3,
),
VarUsageInfo {
@ -1044,7 +1044,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#9,
),
VarUsageInfo {

View File

@ -660,7 +660,7 @@ TestSnapshot {
),
(
(
Atom('ms' type=inline),
Atom('ms' type=static),
#1,
),
VarUsageInfo {
@ -698,7 +698,7 @@ TestSnapshot {
),
(
(
Atom('ms' type=inline),
Atom('ms' type=static),
#6,
),
VarUsageInfo {
@ -736,7 +736,7 @@ TestSnapshot {
),
(
(
Atom('ms' type=inline),
Atom('ms' type=static),
#7,
),
VarUsageInfo {
@ -774,7 +774,7 @@ TestSnapshot {
),
(
(
Atom('ms' type=inline),
Atom('ms' type=static),
#8,
),
VarUsageInfo {
@ -1198,7 +1198,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1,
),
VarUsageInfo {

View File

@ -5236,7 +5236,7 @@ TestSnapshot {
),
(
(
Atom('after' type=inline),
Atom('after' type=static),
#32,
),
VarUsageInfo {
@ -5276,7 +5276,7 @@ TestSnapshot {
),
(
(
Atom('after' type=inline),
Atom('after' type=static),
#60,
),
VarUsageInfo {
@ -5316,7 +5316,7 @@ TestSnapshot {
),
(
(
Atom('after' type=inline),
Atom('after' type=static),
#152,
),
VarUsageInfo {
@ -5356,7 +5356,7 @@ TestSnapshot {
),
(
(
Atom('after' type=inline),
Atom('after' type=static),
#171,
),
VarUsageInfo {
@ -7118,7 +7118,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#32,
),
VarUsageInfo {
@ -7158,7 +7158,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#152,
),
VarUsageInfo {
@ -7198,7 +7198,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#170,
),
VarUsageInfo {
@ -7238,7 +7238,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#284,
),
VarUsageInfo {
@ -7706,7 +7706,7 @@ TestSnapshot {
),
(
(
Atom('block' type=inline),
Atom('block' type=static),
#202,
),
VarUsageInfo {
@ -20614,7 +20614,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#55,
),
VarUsageInfo {
@ -20654,7 +20654,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#56,
),
VarUsageInfo {
@ -20694,7 +20694,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#57,
),
VarUsageInfo {
@ -20734,7 +20734,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#60,
),
VarUsageInfo {
@ -20774,7 +20774,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#63,
),
VarUsageInfo {
@ -20814,7 +20814,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#130,
),
VarUsageInfo {
@ -20852,7 +20852,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#143,
),
VarUsageInfo {
@ -20892,7 +20892,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#148,
),
VarUsageInfo {
@ -20932,7 +20932,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#194,
),
VarUsageInfo {
@ -20970,7 +20970,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#195,
),
VarUsageInfo {
@ -21010,7 +21010,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#302,
),
VarUsageInfo {
@ -21050,7 +21050,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#334,
),
VarUsageInfo {
@ -21088,7 +21088,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#335,
),
VarUsageInfo {
@ -21126,7 +21126,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#343,
),
VarUsageInfo {
@ -21166,7 +21166,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#355,
),
VarUsageInfo {
@ -21206,7 +21206,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#359,
),
VarUsageInfo {
@ -33016,7 +33016,7 @@ TestSnapshot {
),
(
(
Atom('inline' type=inline),
Atom('inline' type=static),
#78,
),
VarUsageInfo {
@ -33054,7 +33054,7 @@ TestSnapshot {
),
(
(
Atom('inline' type=inline),
Atom('inline' type=static),
#88,
),
VarUsageInfo {
@ -33094,7 +33094,7 @@ TestSnapshot {
),
(
(
Atom('inline' type=inline),
Atom('inline' type=static),
#132,
),
VarUsageInfo {
@ -33132,7 +33132,7 @@ TestSnapshot {
),
(
(
Atom('inline' type=inline),
Atom('inline' type=static),
#330,
),
VarUsageInfo {
@ -44986,7 +44986,7 @@ TestSnapshot {
),
(
(
Atom('none' type=inline),
Atom('none' type=static),
#2,
),
VarUsageInfo {
@ -65418,7 +65418,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#130,
),
VarUsageInfo {
@ -65456,7 +65456,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#148,
),
VarUsageInfo {
@ -65496,7 +65496,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#194,
),
VarUsageInfo {
@ -65534,7 +65534,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#196,
),
VarUsageInfo {
@ -65574,7 +65574,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#228,
),
VarUsageInfo {
@ -65612,7 +65612,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#334,
),
VarUsageInfo {
@ -65650,7 +65650,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#335,
),
VarUsageInfo {
@ -65688,7 +65688,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#343,
),
VarUsageInfo {

View File

@ -3280,7 +3280,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#19,
),
VarUsageInfo {
@ -3320,7 +3320,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#24,
),
VarUsageInfo {
@ -3360,7 +3360,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#26,
),
VarUsageInfo {

View File

@ -53114,7 +53114,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#1299,
),
VarUsageInfo {
@ -108196,7 +108196,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#237,
),
VarUsageInfo {
@ -108234,7 +108234,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#238,
),
VarUsageInfo {
@ -108272,7 +108272,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#239,
),
VarUsageInfo {
@ -108312,7 +108312,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#589,
),
VarUsageInfo {
@ -108350,7 +108350,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#596,
),
VarUsageInfo {
@ -108390,7 +108390,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1188,
),
VarUsageInfo {
@ -108430,7 +108430,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1336,
),
VarUsageInfo {
@ -108468,7 +108468,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1339,
),
VarUsageInfo {
@ -108508,7 +108508,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1340,
),
VarUsageInfo {
@ -108548,7 +108548,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1347,
),
VarUsageInfo {
@ -108588,7 +108588,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1676,
),
VarUsageInfo {
@ -108626,7 +108626,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1677,
),
VarUsageInfo {
@ -108664,7 +108664,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1678,
),
VarUsageInfo {
@ -108702,7 +108702,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1702,
),
VarUsageInfo {
@ -108740,7 +108740,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1723,
),
VarUsageInfo {
@ -108778,7 +108778,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1724,
),
VarUsageInfo {
@ -108816,7 +108816,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1778,
),
VarUsageInfo {
@ -108856,7 +108856,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1986,
),
VarUsageInfo {
@ -108894,7 +108894,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1991,
),
VarUsageInfo {
@ -108932,7 +108932,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#2029,
),
VarUsageInfo {
@ -108970,7 +108970,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#2089,
),
VarUsageInfo {
@ -109010,7 +109010,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#2100,
),
VarUsageInfo {
@ -109048,7 +109048,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#2152,
),
VarUsageInfo {
@ -109086,7 +109086,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#2153,
),
VarUsageInfo {
@ -109124,7 +109124,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#2166,
),
VarUsageInfo {
@ -109164,7 +109164,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#2171,
),
VarUsageInfo {
@ -109202,7 +109202,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#2208,
),
VarUsageInfo {
@ -109242,7 +109242,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#2405,
),
VarUsageInfo {
@ -162626,7 +162626,7 @@ TestSnapshot {
),
(
(
Atom('initial' type=inline),
Atom('initial' type=static),
#23,
),
VarUsageInfo {
@ -162664,7 +162664,7 @@ TestSnapshot {
),
(
(
Atom('initial' type=inline),
Atom('initial' type=static),
#2371,
),
VarUsageInfo {
@ -162704,7 +162704,7 @@ TestSnapshot {
),
(
(
Atom('initial' type=inline),
Atom('initial' type=static),
#2372,
),
VarUsageInfo {
@ -206260,7 +206260,7 @@ TestSnapshot {
),
(
(
Atom('opacity' type=inline),
Atom('opacity' type=static),
#476,
),
VarUsageInfo {
@ -238096,7 +238096,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1174,
),
VarUsageInfo {
@ -252180,7 +252180,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#445,
),
VarUsageInfo {
@ -252220,7 +252220,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#446,
),
VarUsageInfo {
@ -252258,7 +252258,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#526,
),
VarUsageInfo {
@ -252298,7 +252298,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1126,
),
VarUsageInfo {
@ -252336,7 +252336,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1389,
),
VarUsageInfo {
@ -252374,7 +252374,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2236,
),
VarUsageInfo {
@ -254538,7 +254538,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#1593,
),
VarUsageInfo {
@ -254578,7 +254578,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#1804,
),
VarUsageInfo {
@ -278330,7 +278330,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#236,
),
VarUsageInfo {
@ -278368,7 +278368,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#238,
),
VarUsageInfo {
@ -278406,7 +278406,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#239,
),
VarUsageInfo {
@ -278446,7 +278446,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#596,
),
VarUsageInfo {
@ -278486,7 +278486,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1336,
),
VarUsageInfo {
@ -278524,7 +278524,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1338,
),
VarUsageInfo {
@ -278562,7 +278562,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1339,
),
VarUsageInfo {
@ -278602,7 +278602,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1340,
),
VarUsageInfo {
@ -278642,7 +278642,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1347,
),
VarUsageInfo {
@ -278682,7 +278682,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1430,
),
VarUsageInfo {
@ -278720,7 +278720,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1493,
),
VarUsageInfo {
@ -278758,7 +278758,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1629,
),
VarUsageInfo {
@ -278796,7 +278796,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1676,
),
VarUsageInfo {
@ -278834,7 +278834,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1677,
),
VarUsageInfo {
@ -278872,7 +278872,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1678,
),
VarUsageInfo {
@ -278910,7 +278910,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1702,
),
VarUsageInfo {
@ -278948,7 +278948,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1723,
),
VarUsageInfo {
@ -278986,7 +278986,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1724,
),
VarUsageInfo {
@ -279024,7 +279024,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1986,
),
VarUsageInfo {
@ -279062,7 +279062,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1990,
),
VarUsageInfo {
@ -279102,7 +279102,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1991,
),
VarUsageInfo {
@ -279140,7 +279140,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2029,
),
VarUsageInfo {
@ -279178,7 +279178,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2089,
),
VarUsageInfo {
@ -279218,7 +279218,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2100,
),
VarUsageInfo {
@ -279256,7 +279256,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2152,
),
VarUsageInfo {
@ -279294,7 +279294,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2153,
),
VarUsageInfo {
@ -279332,7 +279332,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2166,
),
VarUsageInfo {
@ -279372,7 +279372,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2171,
),
VarUsageInfo {
@ -279410,7 +279410,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2193,
),
VarUsageInfo {
@ -279450,7 +279450,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2194,
),
VarUsageInfo {
@ -279490,7 +279490,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2208,
),
VarUsageInfo {
@ -279530,7 +279530,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#2405,
),
VarUsageInfo {
@ -285934,7 +285934,7 @@ TestSnapshot {
),
(
(
Atom('table' type=inline),
Atom('table' type=static),
#1823,
),
VarUsageInfo {
@ -285974,7 +285974,7 @@ TestSnapshot {
),
(
(
Atom('table' type=inline),
Atom('table' type=static),
#2239,
),
VarUsageInfo {

View File

@ -24900,7 +24900,7 @@ TestSnapshot {
),
(
(
Atom('block' type=inline),
Atom('block' type=static),
#84,
),
VarUsageInfo {
@ -24938,7 +24938,7 @@ TestSnapshot {
),
(
(
Atom('block' type=inline),
Atom('block' type=static),
#95,
),
VarUsageInfo {
@ -33562,7 +33562,7 @@ TestSnapshot {
),
(
(
Atom('cm' type=inline),
Atom('cm' type=static),
#55,
),
VarUsageInfo {
@ -45520,7 +45520,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#26,
),
VarUsageInfo {
@ -45558,7 +45558,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#64,
),
VarUsageInfo {
@ -45598,7 +45598,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#65,
),
VarUsageInfo {
@ -45638,7 +45638,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#272,
),
VarUsageInfo {
@ -45678,7 +45678,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#291,
),
VarUsageInfo {
@ -45718,7 +45718,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#294,
),
VarUsageInfo {
@ -45756,7 +45756,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#304,
),
VarUsageInfo {
@ -45796,7 +45796,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#305,
),
VarUsageInfo {
@ -45836,7 +45836,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#394,
),
VarUsageInfo {
@ -45874,7 +45874,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#404,
),
VarUsageInfo {
@ -45912,7 +45912,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#417,
),
VarUsageInfo {
@ -45952,7 +45952,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#443,
),
VarUsageInfo {
@ -45992,7 +45992,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#642,
),
VarUsageInfo {
@ -46030,7 +46030,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#668,
),
VarUsageInfo {
@ -46068,7 +46068,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#676,
),
VarUsageInfo {
@ -46106,7 +46106,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#691,
),
VarUsageInfo {
@ -46144,7 +46144,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#692,
),
VarUsageInfo {
@ -46182,7 +46182,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#694,
),
VarUsageInfo {
@ -46220,7 +46220,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#695,
),
VarUsageInfo {
@ -46258,7 +46258,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#696,
),
VarUsageInfo {
@ -46296,7 +46296,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#697,
),
VarUsageInfo {
@ -46334,7 +46334,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#698,
),
VarUsageInfo {
@ -46372,7 +46372,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#740,
),
VarUsageInfo {
@ -46410,7 +46410,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#741,
),
VarUsageInfo {
@ -72596,7 +72596,7 @@ TestSnapshot {
),
(
(
Atom('matches' type=inline),
Atom('matches' type=static),
#236,
),
VarUsageInfo {
@ -96924,7 +96924,7 @@ TestSnapshot {
),
(
(
Atom('pt' type=inline),
Atom('pt' type=static),
#192,
),
VarUsageInfo {
@ -99900,7 +99900,7 @@ TestSnapshot {
),
(
(
Atom('repeat' type=inline),
Atom('repeat' type=static),
#4,
),
VarUsageInfo {
@ -99940,7 +99940,7 @@ TestSnapshot {
),
(
(
Atom('repeat' type=inline),
Atom('repeat' type=static),
#5,
),
VarUsageInfo {
@ -99978,7 +99978,7 @@ TestSnapshot {
),
(
(
Atom('repeat' type=inline),
Atom('repeat' type=static),
#443,
),
VarUsageInfo {
@ -101912,7 +101912,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#121,
),
VarUsageInfo {
@ -101950,7 +101950,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#298,
),
VarUsageInfo {
@ -101990,7 +101990,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#487,
),
VarUsageInfo {
@ -102028,7 +102028,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#488,
),
VarUsageInfo {
@ -102066,7 +102066,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#544,
),
VarUsageInfo {
@ -102104,7 +102104,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#562,
),
VarUsageInfo {
@ -102142,7 +102142,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#752,
),
VarUsageInfo {
@ -102182,7 +102182,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#753,
),
VarUsageInfo {
@ -109042,7 +109042,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#26,
),
VarUsageInfo {
@ -109080,7 +109080,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#171,
),
VarUsageInfo {
@ -109118,7 +109118,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#172,
),
VarUsageInfo {
@ -109156,7 +109156,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#175,
),
VarUsageInfo {
@ -109194,7 +109194,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#181,
),
VarUsageInfo {
@ -109232,7 +109232,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#272,
),
VarUsageInfo {
@ -109272,7 +109272,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#291,
),
VarUsageInfo {
@ -109310,7 +109310,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#298,
),
VarUsageInfo {
@ -109348,7 +109348,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#304,
),
VarUsageInfo {
@ -109386,7 +109386,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#305,
),
VarUsageInfo {
@ -109424,7 +109424,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#313,
),
VarUsageInfo {
@ -109462,7 +109462,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#377,
),
VarUsageInfo {
@ -109500,7 +109500,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#404,
),
VarUsageInfo {
@ -109538,7 +109538,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#414,
),
VarUsageInfo {
@ -109578,7 +109578,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#417,
),
VarUsageInfo {
@ -109618,7 +109618,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#442,
),
VarUsageInfo {
@ -109658,7 +109658,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#469,
),
VarUsageInfo {
@ -109696,7 +109696,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#642,
),
VarUsageInfo {
@ -109734,7 +109734,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#668,
),
VarUsageInfo {
@ -109772,7 +109772,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#676,
),
VarUsageInfo {
@ -109810,7 +109810,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#691,
),
VarUsageInfo {
@ -109848,7 +109848,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#692,
),
VarUsageInfo {
@ -109886,7 +109886,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#694,
),
VarUsageInfo {
@ -109924,7 +109924,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#695,
),
VarUsageInfo {
@ -109962,7 +109962,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#696,
),
VarUsageInfo {
@ -110000,7 +110000,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#697,
),
VarUsageInfo {
@ -110038,7 +110038,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#698,
),
VarUsageInfo {
@ -110076,7 +110076,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#740,
),
VarUsageInfo {
@ -110114,7 +110114,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#741,
),
VarUsageInfo {
@ -113254,7 +113254,7 @@ TestSnapshot {
),
(
(
Atom('table' type=inline),
Atom('table' type=static),
#750,
),
VarUsageInfo {

View File

@ -1720,7 +1720,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#8,
),
VarUsageInfo {
@ -1760,7 +1760,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#19,
),
VarUsageInfo {
@ -1800,7 +1800,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#26,
),
VarUsageInfo {
@ -1840,7 +1840,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#35,
),
VarUsageInfo {
@ -1880,7 +1880,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#38,
),
VarUsageInfo {
@ -1920,7 +1920,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#42,
),
VarUsageInfo {
@ -1960,7 +1960,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#47,
),
VarUsageInfo {
@ -2000,7 +2000,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#64,
),
VarUsageInfo {
@ -2040,7 +2040,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#72,
),
VarUsageInfo {
@ -5716,7 +5716,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#8,
),
VarUsageInfo {
@ -5756,7 +5756,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#13,
),
VarUsageInfo {
@ -5796,7 +5796,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#72,
),
VarUsageInfo {

View File

@ -10564,7 +10564,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#15,
),
VarUsageInfo {

View File

@ -131420,7 +131420,7 @@ TestSnapshot {
),
(
(
Atom('cm' type=inline),
Atom('cm' type=static),
#2,
),
VarUsageInfo {
@ -227558,7 +227558,7 @@ TestSnapshot {
),
(
(
Atom('hz' type=inline),
Atom('hz' type=static),
#2,
),
VarUsageInfo {
@ -255580,7 +255580,7 @@ TestSnapshot {
),
(
(
Atom('mm' type=inline),
Atom('mm' type=static),
#2,
),
VarUsageInfo {
@ -255808,7 +255808,7 @@ TestSnapshot {
),
(
(
Atom('ms' type=inline),
Atom('ms' type=static),
#2,
),
VarUsageInfo {
@ -264212,7 +264212,7 @@ TestSnapshot {
),
(
(
Atom('pc' type=inline),
Atom('pc' type=static),
#2,
),
VarUsageInfo {
@ -264858,7 +264858,7 @@ TestSnapshot {
),
(
(
Atom('pt' type=inline),
Atom('pt' type=static),
#2,
),
VarUsageInfo {
@ -265010,7 +265010,7 @@ TestSnapshot {
),
(
(
Atom('px' type=inline),
Atom('px' type=static),
#2,
),
VarUsageInfo {
@ -265124,7 +265124,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2,
),
VarUsageInfo {
@ -265164,7 +265164,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#30,
),
VarUsageInfo {
@ -265204,7 +265204,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#113,
),
VarUsageInfo {
@ -265244,7 +265244,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#117,
),
VarUsageInfo {
@ -265284,7 +265284,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#122,
),
VarUsageInfo {
@ -265324,7 +265324,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#129,
),
VarUsageInfo {
@ -265364,7 +265364,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#148,
),
VarUsageInfo {
@ -265404,7 +265404,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#159,
),
VarUsageInfo {
@ -265444,7 +265444,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#172,
),
VarUsageInfo {
@ -265484,7 +265484,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#306,
),
VarUsageInfo {
@ -265524,7 +265524,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1022,
),
VarUsageInfo {
@ -265564,7 +265564,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1068,
),
VarUsageInfo {
@ -265604,7 +265604,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1264,
),
VarUsageInfo {
@ -265644,7 +265644,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1278,
),
VarUsageInfo {
@ -265684,7 +265684,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1288,
),
VarUsageInfo {
@ -265724,7 +265724,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1289,
),
VarUsageInfo {
@ -265764,7 +265764,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1302,
),
VarUsageInfo {
@ -268928,7 +268928,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2,
),
VarUsageInfo {
@ -268968,7 +268968,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#30,
),
VarUsageInfo {
@ -269008,7 +269008,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#113,
),
VarUsageInfo {
@ -269048,7 +269048,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#117,
),
VarUsageInfo {
@ -269088,7 +269088,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#122,
),
VarUsageInfo {
@ -269128,7 +269128,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#148,
),
VarUsageInfo {
@ -269168,7 +269168,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#159,
),
VarUsageInfo {
@ -269208,7 +269208,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#172,
),
VarUsageInfo {
@ -269248,7 +269248,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#306,
),
VarUsageInfo {
@ -269288,7 +269288,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1022,
),
VarUsageInfo {
@ -269328,7 +269328,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1264,
),
VarUsageInfo {
@ -269368,7 +269368,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1278,
),
VarUsageInfo {
@ -269408,7 +269408,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1288,
),
VarUsageInfo {
@ -269448,7 +269448,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1289,
),
VarUsageInfo {
@ -269488,7 +269488,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1302,
),
VarUsageInfo {

View File

@ -30594,7 +30594,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#242,
),
VarUsageInfo {
@ -37370,7 +37370,7 @@ TestSnapshot {
),
(
(
Atom('initial' type=inline),
Atom('initial' type=static),
#332,
),
VarUsageInfo {
@ -40638,7 +40638,7 @@ TestSnapshot {
),
(
(
Atom('margin' type=inline),
Atom('margin' type=static),
#298,
),
VarUsageInfo {
@ -43654,7 +43654,7 @@ TestSnapshot {
),
(
(
Atom('opacity' type=inline),
Atom('opacity' type=static),
#121,
),
VarUsageInfo {
@ -51730,7 +51730,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#53,
),
VarUsageInfo {
@ -51768,7 +51768,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#54,
),
VarUsageInfo {
@ -51808,7 +51808,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#56,
),
VarUsageInfo {
@ -54812,7 +54812,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#52,
),
VarUsageInfo {
@ -54852,7 +54852,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#54,
),
VarUsageInfo {
@ -54890,7 +54890,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#55,
),
VarUsageInfo {
@ -54930,7 +54930,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#56,
),
VarUsageInfo {
@ -54968,7 +54968,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#64,
),
VarUsageInfo {
@ -55008,7 +55008,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#73,
),
VarUsageInfo {
@ -55048,7 +55048,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#75,
),
VarUsageInfo {
@ -55088,7 +55088,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#98,
),
VarUsageInfo {
@ -55128,7 +55128,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#104,
),
VarUsageInfo {
@ -58800,7 +58800,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#242,
),
VarUsageInfo {

View File

@ -426,7 +426,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2,
),
VarUsageInfo {

View File

@ -45430,7 +45430,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#19,
),
VarUsageInfo {
@ -45468,7 +45468,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#30,
),
VarUsageInfo {
@ -45508,7 +45508,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#34,
),
VarUsageInfo {
@ -45546,7 +45546,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#66,
),
VarUsageInfo {
@ -45586,7 +45586,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#68,
),
VarUsageInfo {
@ -45626,7 +45626,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#82,
),
VarUsageInfo {
@ -45666,7 +45666,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#142,
),
VarUsageInfo {
@ -45706,7 +45706,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#143,
),
VarUsageInfo {
@ -45746,7 +45746,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#169,
),
VarUsageInfo {
@ -45786,7 +45786,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#173,
),
VarUsageInfo {
@ -45826,7 +45826,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#183,
),
VarUsageInfo {
@ -45866,7 +45866,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#187,
),
VarUsageInfo {
@ -45906,7 +45906,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#191,
),
VarUsageInfo {
@ -45946,7 +45946,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#202,
),
VarUsageInfo {
@ -45986,7 +45986,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#217,
),
VarUsageInfo {
@ -46026,7 +46026,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#228,
),
VarUsageInfo {
@ -46066,7 +46066,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#285,
),
VarUsageInfo {
@ -46106,7 +46106,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#325,
),
VarUsageInfo {
@ -46146,7 +46146,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#331,
),
VarUsageInfo {
@ -46186,7 +46186,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#341,
),
VarUsageInfo {

View File

@ -12310,7 +12310,7 @@ TestSnapshot {
),
(
(
Atom('after' type=inline),
Atom('after' type=static),
#448,
),
VarUsageInfo {
@ -12348,7 +12348,7 @@ TestSnapshot {
),
(
(
Atom('after' type=inline),
Atom('after' type=static),
#1031,
),
VarUsageInfo {
@ -12386,7 +12386,7 @@ TestSnapshot {
),
(
(
Atom('after' type=inline),
Atom('after' type=static),
#1049,
),
VarUsageInfo {
@ -12426,7 +12426,7 @@ TestSnapshot {
),
(
(
Atom('after' type=inline),
Atom('after' type=static),
#1239,
),
VarUsageInfo {
@ -16742,7 +16742,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#448,
),
VarUsageInfo {
@ -16780,7 +16780,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#622,
),
VarUsageInfo {
@ -16820,7 +16820,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#1049,
),
VarUsageInfo {
@ -16860,7 +16860,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#1117,
),
VarUsageInfo {
@ -16900,7 +16900,7 @@ TestSnapshot {
),
(
(
Atom('before' type=inline),
Atom('before' type=static),
#1239,
),
VarUsageInfo {
@ -42756,7 +42756,7 @@ TestSnapshot {
),
(
(
Atom('display' type=inline),
Atom('display' type=static),
#946,
),
VarUsageInfo {
@ -42794,7 +42794,7 @@ TestSnapshot {
),
(
(
Atom('display' type=inline),
Atom('display' type=static),
#1111,
),
VarUsageInfo {
@ -42832,7 +42832,7 @@ TestSnapshot {
),
(
(
Atom('display' type=inline),
Atom('display' type=static),
#1196,
),
VarUsageInfo {
@ -60320,7 +60320,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#84,
),
VarUsageInfo {
@ -60360,7 +60360,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#99,
),
VarUsageInfo {
@ -60400,7 +60400,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#100,
),
VarUsageInfo {
@ -60440,7 +60440,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#103,
),
VarUsageInfo {
@ -60478,7 +60478,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#320,
),
VarUsageInfo {
@ -60518,7 +60518,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#351,
),
VarUsageInfo {
@ -60558,7 +60558,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#361,
),
VarUsageInfo {
@ -60598,7 +60598,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#378,
),
VarUsageInfo {
@ -60638,7 +60638,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#445,
),
VarUsageInfo {
@ -60678,7 +60678,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#467,
),
VarUsageInfo {
@ -60718,7 +60718,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#495,
),
VarUsageInfo {
@ -60758,7 +60758,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#501,
),
VarUsageInfo {
@ -60798,7 +60798,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#502,
),
VarUsageInfo {
@ -60838,7 +60838,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#503,
),
VarUsageInfo {
@ -60878,7 +60878,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#506,
),
VarUsageInfo {
@ -60918,7 +60918,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#529,
),
VarUsageInfo {
@ -60958,7 +60958,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#559,
),
VarUsageInfo {
@ -60998,7 +60998,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#574,
),
VarUsageInfo {
@ -61038,7 +61038,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#581,
),
VarUsageInfo {
@ -61078,7 +61078,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#657,
),
VarUsageInfo {
@ -61118,7 +61118,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#702,
),
VarUsageInfo {
@ -61158,7 +61158,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1032,
),
VarUsageInfo {
@ -61198,7 +61198,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1042,
),
VarUsageInfo {
@ -61238,7 +61238,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1051,
),
VarUsageInfo {
@ -61276,7 +61276,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1052,
),
VarUsageInfo {
@ -61316,7 +61316,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1096,
),
VarUsageInfo {
@ -61356,7 +61356,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1335,
),
VarUsageInfo {
@ -61396,7 +61396,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1374,
),
VarUsageInfo {
@ -61436,7 +61436,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1375,
),
VarUsageInfo {
@ -61476,7 +61476,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#1386,
),
VarUsageInfo {
@ -108906,7 +108906,7 @@ TestSnapshot {
),
(
(
Atom('matches' type=inline),
Atom('matches' type=static),
#119,
),
VarUsageInfo {
@ -108946,7 +108946,7 @@ TestSnapshot {
),
(
(
Atom('matches' type=inline),
Atom('matches' type=static),
#742,
),
VarUsageInfo {
@ -108986,7 +108986,7 @@ TestSnapshot {
),
(
(
Atom('matches' type=inline),
Atom('matches' type=static),
#752,
),
VarUsageInfo {
@ -126094,7 +126094,7 @@ TestSnapshot {
),
(
(
Atom('padding' type=inline),
Atom('padding' type=static),
#1074,
),
VarUsageInfo {
@ -126134,7 +126134,7 @@ TestSnapshot {
),
(
(
Atom('padding' type=inline),
Atom('padding' type=static),
#1084,
),
VarUsageInfo {
@ -126174,7 +126174,7 @@ TestSnapshot {
),
(
(
Atom('padding' type=inline),
Atom('padding' type=static),
#1089,
),
VarUsageInfo {
@ -126212,7 +126212,7 @@ TestSnapshot {
),
(
(
Atom('padding' type=inline),
Atom('padding' type=static),
#1097,
),
VarUsageInfo {
@ -126252,7 +126252,7 @@ TestSnapshot {
),
(
(
Atom('padding' type=inline),
Atom('padding' type=static),
#1099,
),
VarUsageInfo {
@ -126292,7 +126292,7 @@ TestSnapshot {
),
(
(
Atom('padding' type=inline),
Atom('padding' type=static),
#1106,
),
VarUsageInfo {
@ -126330,7 +126330,7 @@ TestSnapshot {
),
(
(
Atom('padding' type=inline),
Atom('padding' type=static),
#1131,
),
VarUsageInfo {
@ -126368,7 +126368,7 @@ TestSnapshot {
),
(
(
Atom('padding' type=inline),
Atom('padding' type=static),
#1205,
),
VarUsageInfo {
@ -126406,7 +126406,7 @@ TestSnapshot {
),
(
(
Atom('padding' type=inline),
Atom('padding' type=static),
#1242,
),
VarUsageInfo {
@ -133008,7 +133008,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#1280,
),
VarUsageInfo {
@ -154328,7 +154328,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#245,
),
VarUsageInfo {
@ -154368,7 +154368,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#967,
),
VarUsageInfo {
@ -167568,7 +167568,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#84,
),
VarUsageInfo {
@ -167608,7 +167608,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#99,
),
VarUsageInfo {
@ -167648,7 +167648,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#100,
),
VarUsageInfo {
@ -167688,7 +167688,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#103,
),
VarUsageInfo {
@ -167726,7 +167726,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#320,
),
VarUsageInfo {
@ -167766,7 +167766,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#351,
),
VarUsageInfo {
@ -167806,7 +167806,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#361,
),
VarUsageInfo {
@ -167846,7 +167846,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#378,
),
VarUsageInfo {
@ -167886,7 +167886,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#445,
),
VarUsageInfo {
@ -167926,7 +167926,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#467,
),
VarUsageInfo {
@ -167966,7 +167966,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#495,
),
VarUsageInfo {
@ -168006,7 +168006,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#501,
),
VarUsageInfo {
@ -168046,7 +168046,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#502,
),
VarUsageInfo {
@ -168086,7 +168086,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#503,
),
VarUsageInfo {
@ -168126,7 +168126,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#529,
),
VarUsageInfo {
@ -168166,7 +168166,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#559,
),
VarUsageInfo {
@ -168206,7 +168206,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#574,
),
VarUsageInfo {
@ -168246,7 +168246,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#581,
),
VarUsageInfo {
@ -168286,7 +168286,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#657,
),
VarUsageInfo {
@ -168326,7 +168326,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#702,
),
VarUsageInfo {
@ -168366,7 +168366,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#748,
),
VarUsageInfo {
@ -168406,7 +168406,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#932,
),
VarUsageInfo {
@ -168446,7 +168446,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1032,
),
VarUsageInfo {
@ -168486,7 +168486,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1042,
),
VarUsageInfo {
@ -168526,7 +168526,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1051,
),
VarUsageInfo {
@ -168564,7 +168564,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1096,
),
VarUsageInfo {
@ -168604,7 +168604,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1335,
),
VarUsageInfo {
@ -168644,7 +168644,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1374,
),
VarUsageInfo {
@ -168684,7 +168684,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1375,
),
VarUsageInfo {
@ -168724,7 +168724,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#1386,
),
VarUsageInfo {
@ -172202,7 +172202,7 @@ TestSnapshot {
),
(
(
Atom('steps' type=inline),
Atom('steps' type=static),
#1224,
),
VarUsageInfo {
@ -172242,7 +172242,7 @@ TestSnapshot {
),
(
(
Atom('steps' type=inline),
Atom('steps' type=static),
#1227,
),
VarUsageInfo {

View File

@ -90038,7 +90038,7 @@ TestSnapshot {
),
(
(
Atom('pc' type=inline),
Atom('pc' type=static),
#2,
),
VarUsageInfo {
@ -90462,7 +90462,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#211,
),
VarUsageInfo {
@ -90502,7 +90502,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#237,
),
VarUsageInfo {
@ -90540,7 +90540,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#335,
),
VarUsageInfo {
@ -90580,7 +90580,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#356,
),
VarUsageInfo {
@ -90620,7 +90620,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#375,
),
VarUsageInfo {
@ -90660,7 +90660,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#390,
),
VarUsageInfo {
@ -90698,7 +90698,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#414,
),
VarUsageInfo {
@ -90738,7 +90738,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#423,
),
VarUsageInfo {
@ -90778,7 +90778,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#485,
),
VarUsageInfo {
@ -90818,7 +90818,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#504,
),
VarUsageInfo {
@ -90856,7 +90856,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#506,
),
VarUsageInfo {

View File

@ -17284,7 +17284,7 @@ TestSnapshot {
),
(
(
Atom('display' type=inline),
Atom('display' type=static),
#63,
),
VarUsageInfo {
@ -24408,7 +24408,7 @@ TestSnapshot {
),
(
(
Atom('flex' type=inline),
Atom('flex' type=static),
#63,
),
VarUsageInfo {
@ -26434,7 +26434,7 @@ TestSnapshot {
),
(
(
Atom('grid' type=inline),
Atom('grid' type=static),
#63,
),
VarUsageInfo {
@ -33106,7 +33106,7 @@ TestSnapshot {
),
(
(
Atom('margin' type=inline),
Atom('margin' type=static),
#63,
),
VarUsageInfo {
@ -39552,7 +39552,7 @@ TestSnapshot {
),
(
(
Atom('opacity' type=inline),
Atom('opacity' type=static),
#63,
),
VarUsageInfo {
@ -39856,7 +39856,7 @@ TestSnapshot {
),
(
(
Atom('overflow' type=dynamic),
Atom('overflow' type=static),
#63,
),
VarUsageInfo {
@ -40286,7 +40286,7 @@ TestSnapshot {
),
(
(
Atom('padding' type=inline),
Atom('padding' type=static),
#63,
),
VarUsageInfo {
@ -42226,7 +42226,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#43,
),
VarUsageInfo {
@ -42266,7 +42266,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#63,
),
VarUsageInfo {
@ -42306,7 +42306,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#65,
),
VarUsageInfo {
@ -42346,7 +42346,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#71,
),
VarUsageInfo {
@ -42384,7 +42384,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#307,
),
VarUsageInfo {
@ -45536,7 +45536,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1,
),
VarUsageInfo {
@ -45574,7 +45574,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#90,
),
VarUsageInfo {
@ -45614,7 +45614,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#92,
),
VarUsageInfo {
@ -45654,7 +45654,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#96,
),
VarUsageInfo {
@ -45694,7 +45694,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#97,
),
VarUsageInfo {
@ -45734,7 +45734,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#98,
),
VarUsageInfo {
@ -45774,7 +45774,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#129,
),
VarUsageInfo {
@ -45814,7 +45814,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#138,
),
VarUsageInfo {
@ -45854,7 +45854,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#139,
),
VarUsageInfo {
@ -45894,7 +45894,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#143,
),
VarUsageInfo {
@ -45932,7 +45932,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#145,
),
VarUsageInfo {
@ -45970,7 +45970,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#146,
),
VarUsageInfo {
@ -46008,7 +46008,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#150,
),
VarUsageInfo {
@ -46048,7 +46048,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#159,
),
VarUsageInfo {
@ -46088,7 +46088,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#160,
),
VarUsageInfo {
@ -46128,7 +46128,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#171,
),
VarUsageInfo {
@ -46168,7 +46168,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#181,
),
VarUsageInfo {
@ -46208,7 +46208,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#182,
),
VarUsageInfo {
@ -46248,7 +46248,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#183,
),
VarUsageInfo {
@ -46288,7 +46288,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#184,
),
VarUsageInfo {
@ -46328,7 +46328,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#187,
),
VarUsageInfo {
@ -46368,7 +46368,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#193,
),
VarUsageInfo {
@ -46408,7 +46408,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#198,
),
VarUsageInfo {
@ -46448,7 +46448,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#199,
),
VarUsageInfo {
@ -46488,7 +46488,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#214,
),
VarUsageInfo {
@ -46526,7 +46526,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#217,
),
VarUsageInfo {
@ -46566,7 +46566,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#220,
),
VarUsageInfo {
@ -46604,7 +46604,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#222,
),
VarUsageInfo {
@ -46642,7 +46642,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#223,
),
VarUsageInfo {
@ -46682,7 +46682,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#224,
),
VarUsageInfo {
@ -46720,7 +46720,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#231,
),
VarUsageInfo {
@ -46758,7 +46758,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#233,
),
VarUsageInfo {
@ -46796,7 +46796,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#237,
),
VarUsageInfo {
@ -46834,7 +46834,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#243,
),
VarUsageInfo {
@ -46874,7 +46874,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#244,
),
VarUsageInfo {
@ -46914,7 +46914,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#245,
),
VarUsageInfo {
@ -46952,7 +46952,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#246,
),
VarUsageInfo {
@ -46990,7 +46990,7 @@ TestSnapshot {
),
(
(
Atom('scale' type=inline),
Atom('scale' type=static),
#247,
),
VarUsageInfo {
@ -48520,7 +48520,7 @@ TestSnapshot {
),
(
(
Atom('space' type=inline),
Atom('space' type=static),
#63,
),
VarUsageInfo {

View File

@ -516,7 +516,7 @@ TestSnapshot {
),
(
(
Atom('unset' type=inline),
Atom('unset' type=static),
#2,
),
VarUsageInfo {

View File

@ -978,7 +978,7 @@ TestSnapshot {
),
(
(
Atom('table' type=inline),
Atom('table' type=static),
#2,
),
VarUsageInfo {

View File

@ -6422,7 +6422,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#24,
),
VarUsageInfo {

View File

@ -6422,7 +6422,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#24,
),
VarUsageInfo {

View File

@ -7770,7 +7770,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#32,
),
VarUsageInfo {

View File

@ -6502,7 +6502,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#24,
),
VarUsageInfo {

View File

@ -6422,7 +6422,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#24,
),
VarUsageInfo {

View File

@ -10044,7 +10044,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#45,
),
VarUsageInfo {

View File

@ -6422,7 +6422,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#24,
),
VarUsageInfo {

View File

@ -6500,7 +6500,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#24,
),
VarUsageInfo {

View File

@ -6422,7 +6422,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#24,
),
VarUsageInfo {

View File

@ -6422,7 +6422,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#24,
),
VarUsageInfo {

View File

@ -192,7 +192,7 @@ TestSnapshot {
),
(
(
Atom('initial' type=inline),
Atom('initial' type=static),
#2,
),
VarUsageInfo {

View File

@ -3014,7 +3014,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1,
),
VarUsageInfo {

View File

@ -360,7 +360,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2,
),
VarUsageInfo {

View File

@ -440,7 +440,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2,
),
VarUsageInfo {

View File

@ -230,7 +230,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#8,
),
VarUsageInfo {
@ -270,7 +270,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#15,
),
VarUsageInfo {

View File

@ -116,7 +116,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#3,
),
VarUsageInfo {
@ -154,7 +154,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#4,
),
VarUsageInfo {
@ -192,7 +192,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#6,
),
VarUsageInfo {
@ -230,7 +230,7 @@ TestSnapshot {
),
(
(
Atom('end' type=inline),
Atom('end' type=static),
#7,
),
VarUsageInfo {
@ -774,7 +774,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#3,
),
VarUsageInfo {
@ -814,7 +814,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#6,
),
VarUsageInfo {
@ -854,7 +854,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#3,
),
VarUsageInfo {
@ -892,7 +892,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#4,
),
VarUsageInfo {
@ -930,7 +930,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#6,
),
VarUsageInfo {
@ -968,7 +968,7 @@ TestSnapshot {
),
(
(
Atom('start' type=inline),
Atom('start' type=static),
#7,
),
VarUsageInfo {

View File

@ -120,7 +120,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#1,
),
VarUsageInfo {

View File

@ -396,7 +396,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#4,
),
VarUsageInfo {
@ -434,7 +434,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#5,
),
VarUsageInfo {
@ -474,7 +474,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#7,
),
VarUsageInfo {

View File

@ -160,7 +160,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2,
),
VarUsageInfo {

View File

@ -632,7 +632,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2,
),
VarUsageInfo {
@ -672,7 +672,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#4,
),
VarUsageInfo {
@ -712,7 +712,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#5,
),
VarUsageInfo {

View File

@ -198,7 +198,7 @@ TestSnapshot {
),
(
(
Atom('q' type=inline),
Atom('q' type=static),
#2,
),
VarUsageInfo {

View File

@ -78,7 +78,7 @@ TestSnapshot {
),
(
(
Atom('pc' type=inline),
Atom('pc' type=static),
#1,
),
VarUsageInfo {

View File

@ -200,7 +200,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2,
),
VarUsageInfo {

View File

@ -236,7 +236,7 @@ TestSnapshot {
),
(
(
Atom('s' type=inline),
Atom('s' type=static),
#2,
),
VarUsageInfo {

Some files were not shown because too many files have changed in this diff Show More