forked from RustPython/RustPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtokenize.rs
More file actions
27 lines (22 loc) · 768 Bytes
/
tokenize.rs
File metadata and controls
27 lines (22 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* python tokenize module.
*/
pub(crate) use decl::make_module;
// TODO: create main function when called with -m
#[pymodule(name = "tokenize")]
mod decl {
use std::iter::FromIterator;
use crate::builtins::pystr::PyStrRef;
use crate::pyobject::{BorrowValue, PyResult};
use crate::vm::VirtualMachine;
use rustpython_parser::lexer;
#[pyfunction]
fn tokenize(s: PyStrRef, vm: &VirtualMachine) -> PyResult {
let source = s.borrow_value();
// TODO: implement generator when the time has come.
let lexer1 = lexer::make_tokenizer(source);
let tokens = lexer1.map(|st| vm.ctx.new_str(format!("{:?}", st.unwrap().1)));
let tokens = Vec::from_iter(tokens);
Ok(vm.ctx.new_list(tokens))
}
}