예제 #1
0
파일: compiler.py 프로젝트: koo5/hy
 def compile_keyword(self, keyword):
     return ast.Str(s=str_type(keyword), lineno=keyword.start_line,
                    col_offset=keyword.start_column)
예제 #2
0
 def compile_keyword(self, keyword):
     return ast.Str(s=str_type(keyword),
                    lineno=keyword.start_line,
                    col_offset=keyword.start_column)
예제 #3
0
파일: compiler.py 프로젝트: koo5/hy
 def compile_string(self, string):
     return ast.Str(s=str_type(string), lineno=string.start_line,
                    col_offset=string.start_column)
예제 #4
0
 def compile_string(self, string):
     return ast.Str(s=str_type(string),
                    lineno=string.start_line,
                    col_offset=string.start_column)