rascal 0.3.4

A parser and compiler for Flash ActionScript 2 files into SWFs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate core;

pub mod ast;
pub mod error;
mod global_types;
pub mod hir;
pub mod lexer;
pub mod parser;
pub mod resolver;

pub fn type_path_to_file_path(input: &str) -> String {
    format!("{}.as", input.replace('.', "/"))
}