typescript-webidl 0.0.2

WebIDL parser and TypeScript converter for Rusty TypeScript
Documentation
1
2
3
4
5
6
7
8
9
/// 调试测试
use typescript_webidl::debug::debug_parse;

#[test]
fn test_debug_parse() {
    println!("Running debug parse test...");
    debug_parse();
    println!("Debug parse test completed.");
}