mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
style: Remove now-unused empty Variables struct.
This commit is contained in:
parent
b1d9746041
commit
45df66f9ff
4 changed files with 2 additions and 40 deletions
|
@ -24,10 +24,7 @@ with open(INPUT_FILE, "r") as bindings, open(OUTPUT_FILE, "w+") as tests:
|
|||
|
||||
for line in bindings:
|
||||
match = pattern.search(line)
|
||||
|
||||
# GetStyleVariables is a Servo_* function, but temporarily defined on
|
||||
# the gecko side
|
||||
if match and match.group(1) != "GetStyleVariables":
|
||||
if match:
|
||||
tests.write(TEMPLATE.format(name=match.group(1)))
|
||||
|
||||
tests.write("}\n")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue