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
32 lines (23 loc) · 809 Bytes
/
tokenize.rs
File metadata and controls
32 lines (23 loc) · 809 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
28
29
30
31
32
/*
* python tokenize module.
*/
use std::iter::FromIterator;
use rustpython_parser::lexer;
use crate::obj::objstr::PyStringRef;
use crate::pyobject::{PyObjectRef, PyResult};
use crate::vm::VirtualMachine;
fn tokenize_tokenize(s: PyStringRef, vm: &VirtualMachine) -> PyResult {
let source = s.as_str();
// 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))
}
// TODO: create main function when called with -m
pub fn make_module(vm: &VirtualMachine) -> PyObjectRef {
let ctx = &vm.ctx;
py_module!(vm, "tokenize", {
"tokenize" => ctx.new_function(tokenize_tokenize)
})
}