[NI] Fix state for named arguments in arguments to parameters mapper

This commit is contained in:
Mikhail Zarechenskiy
2017-11-14 11:35:51 +03:00
parent 15ac471626
commit 2aa8ceb005
@@ -1,5 +1,5 @@
/*
* Copyright 2010-2016 JetBrains s.r.o.
* Copyright 2010-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -200,7 +200,7 @@ class ArgumentsToParametersMapper {
if (state == State.VARARG_POSITION) {
completeVarargPositionArguments()
}
state = State.POSITION_ARGUMENTS
state = State.NAMED_ARGUMENT
processNamedArgument(argument, argumentName)
}