Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.41 KB

README.md

File metadata and controls

49 lines (36 loc) · 1.41 KB

Weedle

A Web IDL parser

Build Status Crates.io version Download docs.rs docs

Built with 🦀🕸 by The Rust and WebAssembly Working Group

About

Parses valid WebIDL definitions & produces a data structure starting from Definitions.

Usage

Cargo.toml

[dependencies]
weedle = "0.9.0"

src/main.rs

fn main() {
    let parsed = weedle::parse("
        interface Window {
            readonly attribute Storage sessionStorage;
        };
    ").unwrap();

    println!("{:?}", parsed);
}