12 releases (7 breaking)

Uses old Rust 2015

0.9.0 May 8, 2019
0.8.0 Oct 10, 2018
0.7.0 Jul 14, 2018
0.5.0 Mar 9, 2018
0.3.2 Jul 3, 2017

#2098 in Parser implementations

Download history 199/week @ 2023-11-23 90/week @ 2023-11-30 128/week @ 2023-12-07 208/week @ 2023-12-14 181/week @ 2023-12-21 77/week @ 2023-12-28 132/week @ 2024-01-04 195/week @ 2024-01-11 189/week @ 2024-01-18 111/week @ 2024-01-25 81/week @ 2024-02-01 163/week @ 2024-02-08 229/week @ 2024-02-15 172/week @ 2024-02-22 188/week @ 2024-02-29 153/week @ 2024-03-07

766 downloads per month
Used in 11 crates (3 directly)

MIT license

170KB
3.5K SLoC

webidl-rs

LICENSE Build Status Crates.io Version

A parser for WebIDL in Rust.

Documentation

Example

Lexing

use webidl::*;

let lexer = Lexer::new("/* Example taken from emscripten site */\n\
                        enum EnumClass_EnumWithinClass {\n\
                            \"EnumClass::e_val\"\n\
                        };");
assert_eq!(lexer.collect::<Vec<_>>(),
           vec![Ok((41, Token::Enum, 45)),
                Ok((46, Token::Identifier("EnumClass_EnumWithinClass".to_string()), 71)),
                Ok((72, Token::LeftBrace, 73)),
                Ok((74, Token::StringLiteral("EnumClass::e_val".to_string()), 92)),
                Ok((93, Token::RightBrace, 94)),
                Ok((94, Token::Semicolon, 95))]);

Parsing

use webidl::*;
use webidl::ast::*;

let result = parse_string("[Attribute] interface Node { };");

assert_eq!(result,
           Ok(vec![Definition::Interface(Interface::NonPartial(NonPartialInterface {
                extended_attributes: vec![
                    Box::new(ExtendedAttribute::NoArguments(
                        Other::Identifier("Attribute".to_string())))],
                inherits: None,
                members: vec![],
                name: "Node".to_string()
           }))]));

Pretty printing AST

An example of a visitor implementation can be found here. Below is an example of how it is used:

use webidl::ast::*;
use webidl::visitor::*;

let ast = vec![Definition::Interface(Interface::NonPartial(NonPartialInterface {
                extended_attributes: vec![
                    Box::new(ExtendedAttribute::NoArguments(
                        Other::Identifier("Attribute".to_string())))],
                inherits: None,
                members: vec![InterfaceMember::Attribute(Attribute::Regular(RegularAttribute {
                             extended_attributes: vec![],
                             inherits: false,
                             name: "attr".to_string(),
                             read_only: true,
                             type_: Box::new(Type {
                                 extended_attributes: vec![],
                                 kind: TypeKind::SignedLong,
                                 nullable: true
                             })
                         }))],
                name: "Node".to_string()
          }))];
let mut visitor = PrettyPrintVisitor::new();
visitor.visit(&ast);
assert_eq!(visitor.get_output(),
           "[Attribute]\ninterface Node {\n    readonly attribute long? attr;\n};\n\n");

Conformance

The parser is conformant with regards to the WebIDL grammar except for three points:

  • Extended attributes, as described by the grammar, are not supported due to their lack of semantic meaning when parsed. Instead, limited forms are supported (as shown in the table). This parser allows a bit more flexibility when parsing extended attributes of the form A=B. The specification states that A and B must be identifiers, but this parser accepts B as any token. If you would like for any extended attributes to be parsed (essentially any sequences of tokens), please consider looking at #8 to help resolve the problem with doing so.
  • This parser supports the old implements keyword that is no longer a part of the official specification. This is for backwards compatibility.
  • This parser supports the old legacycaller keyword that is no longer a part of the official specification. This is for backwards compatibility.

Dependencies

~0–1.1MB
~24K SLoC