diff options
author | Taym Haddadi <haddadi.taym@gmail.com> | 2025-01-04 13:40:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-04 12:40:38 +0000 |
commit | fd39d0d65808fd2cfb12db144dbef709507ecb63 (patch) | |
tree | cad7ebcc05f8ee6bd5d0a55af5e0090e8457fa3a /components/script/dom/bindings/codegen/run.py | |
parent | 5b6c75e358512e16e88a7d1edcb3e3ed45dadcdc (diff) | |
download | servo-fd39d0d65808fd2cfb12db144dbef709507ecb63.tar.gz servo-fd39d0d65808fd2cfb12db144dbef709507ecb63.zip |
Remove readable streams from webidl/codegen (#34835)
Signed-off-by: Taym Haddadi <haddadi.taym@gmail.com>
Diffstat (limited to 'components/script/dom/bindings/codegen/run.py')
-rw-r--r-- | components/script/dom/bindings/codegen/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/codegen/run.py b/components/script/dom/bindings/codegen/run.py index 400d022a167..2dee39814b2 100644 --- a/components/script/dom/bindings/codegen/run.py +++ b/components/script/dom/bindings/codegen/run.py @@ -30,7 +30,7 @@ def main(): from Configuration import Configuration from CodegenRust import CGBindingRoot - parser = WebIDL.Parser(make_dir(os.path.join(out_dir, "cache")), use_builtin_readable_stream=False) + parser = WebIDL.Parser(make_dir(os.path.join(out_dir, "cache"))) webidls = [name for name in os.listdir(webidls_dir) if name.endswith(".webidl")] for webidl in webidls: filename = os.path.join(webidls_dir, webidl) |