| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 9f18a15 commit 339758f
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,9 +16,9 @@ | |||
| 16 | 16 | import python | |
| 17 | 17 | import Expressions.CallArgs | |
| 18 | 18 | ||
| 19 | - from Call call, ClassObject cls, string name, FunctionObject init | ||
| 19 | + from Call call, ClassValue cls, string name, FunctionValue init | ||
| 20 | 20 | where | |
| 21 | - illegally_named_parameter_objectapi(call, cls, name) and | ||
| 22 | - init = get_function_or_initializer_objectapi(cls) | ||
| 21 | + illegally_named_parameter(call, cls, name) and | ||
| 22 | + init = get_function_or_initializer(cls) | ||
| 23 | 23 | select call, "Keyword argument '" + name + "' is not a supported parameter name of $@.", init, | |
| 24 | 24 | init.getQualifiedName() | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - | wrong_arguments.py:65:1:65:7 | F0() | Keyword argument 'y' is not a supported parameter name of $@. | wrong_arguments.py:4:5:4:26 | Function __init__ | F0.__init__ | | ||
| 2 | - | wrong_arguments.py:66:1:66:7 | F1() | Keyword argument 'z' is not a supported parameter name of $@. | wrong_arguments.py:8:5:8:36 | Function __init__ | F1.__init__ | | ||
| 3 | - | wrong_arguments.py:67:1:67:12 | F2() | Keyword argument 'y' is not a supported parameter name of $@. | wrong_arguments.py:12:5:12:30 | Function __init__ | F2.__init__ | | ||
| 4 | - | wrong_arguments.py:92:1:92:27 | F6() | Keyword argument 'z' is not a supported parameter name of $@. | wrong_arguments.py:28:5:28:30 | Function __init__ | F6.__init__ | | ||
| 1 | + | wrong_arguments.py:65:1:65:7 | F0() | Keyword argument 'y' is not a supported parameter name of $@. | wrong_arguments.py:4:5:4:26 | Function F0.__init__ | F0.__init__ | | ||
| 2 | + | wrong_arguments.py:66:1:66:7 | F1() | Keyword argument 'z' is not a supported parameter name of $@. | wrong_arguments.py:8:5:8:36 | Function F1.__init__ | F1.__init__ | | ||
| 3 | + | wrong_arguments.py:67:1:67:12 | F2() | Keyword argument 'y' is not a supported parameter name of $@. | wrong_arguments.py:12:5:12:30 | Function F2.__init__ | F2.__init__ | | ||
| 4 | + | wrong_arguments.py:92:1:92:27 | F6() | Keyword argument 'z' is not a supported parameter name of $@. | wrong_arguments.py:28:5:28:30 | Function F6.__init__ | F6.__init__ | | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments