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