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