1
0
forked from VimPlug/jedi

add some more test for inline errors

This commit is contained in:
Dave Halter
2020-02-14 15:49:18 +01:00
parent dac2655915
commit bcefb04d54
2 changed files with 22 additions and 3 deletions

View File

@@ -149,10 +149,10 @@ def inline(grammar, names):
expr_stmt = tree_name.get_definition()
if expr_stmt.type != 'expr_stmt':
type_ = dict(
funcdef='a function',
classdef='a class',
funcdef='function',
classdef='class',
).get(expr_stmt.type, expr_stmt.type)
raise RefactoringError("Cannot inline %s" % type_)
raise RefactoringError("Cannot inline a %s" % type_)
if len(expr_stmt.get_defined_names(include_setitem=True)) > 1:
raise RefactoringError("Cannot inline a statement with multiple definitions")