Remove workarounds that avoided 'super' in mixins

Dart supports this properly now.
This commit is contained in:
Hixie 2015-10-09 09:23:06 -07:00
parent 8fc8e82db8
commit e79687d6f8

View File

@ -54,7 +54,8 @@ def main():
subprocess.check_output([
DARTANALYZER, "--package-warnings",
"--package-root", os.path.join(WORKBENCH, "packages"),
"--fatal-warnings"
"--fatal-warnings",
"--supermixin",
] + app_paths, stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
errors = [l for l in e.output.split('\n')