File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def run(self, text):
1616 cursor = self .view .rowcol (pos )
1717 line = str (cursor [0 ] + 1 )
1818 args = {"line" : line , "filename" : self .view .file_name (), "referencesRespBody" : references_resp ["body" ]}
19- args_json_str = jsonhelpers .encode (args )
19+ args_json_str = json_helpers .encode (args )
2020 ref_view = get_ref_view ()
2121 ref_view .run_command ('typescript_populate_refs' , {"argsJson" : args_json_str })
2222
@@ -71,7 +71,7 @@ class TypescriptPopulateRefs(sublime_plugin.TextCommand):
7171 references buffer (such as build errors)
7272 """
7373 def run (self , text , argsJson ):
74- args = jsonhelpers .decode (argsJson )
74+ args = json_helpers .decode (argsJson )
7575 file_name = args ["filename" ]
7676 line = args ["line" ]
7777 ref_display_string = args ["referencesRespBody" ]["symbolDisplayString" ]
You can’t perform that action at this time.
0 commit comments