Esempio n. 1
0
File: compiler.py Progetto: koo5/hy
 def compile_keyword(self, keyword):
     return ast.Str(s=str_type(keyword), lineno=keyword.start_line,
                    col_offset=keyword.start_column)
Esempio n. 2
0
 def compile_keyword(self, keyword):
     return ast.Str(s=str_type(keyword),
                    lineno=keyword.start_line,
                    col_offset=keyword.start_column)
Esempio n. 3
0
File: compiler.py Progetto: koo5/hy
 def compile_string(self, string):
     return ast.Str(s=str_type(string), lineno=string.start_line,
                    col_offset=string.start_column)
Esempio n. 4
0
 def compile_string(self, string):
     return ast.Str(s=str_type(string),
                    lineno=string.start_line,
                    col_offset=string.start_column)