tokenize_coffee_script

Function tokenize_coffee_script 

Source
pub fn tokenize_coffee_script(code: &str) -> Vec<Token>
Expand description

Tokenizes CoffeeScript code into a vector of Token structs.

§Arguments

  • code - A string slice containing the CoffeeScript code to tokenize.

§Returns

  • A vector of Token structs representing the parsed tokens.