Add single quotes to variable names (#452) (#458)

This commit is contained in:
Ekalips 2018-02-27 16:12:43 +02:00 committed by Jesse Wilson
parent dfc075515d
commit ce879634cc
2 changed files with 9 additions and 9 deletions

View file

@ -74,7 +74,7 @@ internal class KotlinJsonAdapter<T>(
if (values[index] !== ABSENT_VALUE) {
throw JsonDataException(
"Multiple values for ${constructor.parameters[index].name} at ${reader.path}")
"Multiple values for '${constructor.parameters[index].name}' at ${reader.path}")
}
values[index] = binding.adapter.fromJson(reader)
@ -86,11 +86,11 @@ internal class KotlinJsonAdapter<T>(
if (values[i] === ABSENT_VALUE && !constructor.parameters[i].isOptional) {
if (!constructor.parameters[i].type.isMarkedNullable) {
throw JsonDataException(
"Required value ${constructor.parameters[i].name} missing at ${reader.path}")
"Required value '${constructor.parameters[i].name}' missing at ${reader.path}")
}
values[i] = null // Replace absent with null.
} else if (values[i] == null && !constructor.parameters[i].type.isMarkedNullable) {
throw JsonDataException("Non-null value ${constructor.parameters[i].name} " +
throw JsonDataException("Non-null value '${constructor.parameters[i].name}' " +
"was null at ${reader.path}")
}
}
@ -103,7 +103,7 @@ internal class KotlinJsonAdapter<T>(
val binding = bindings[i]!!
val value = values[i]
if (value == null && !binding.property.returnType.isMarkedNullable) {
throw JsonDataException("Non-null value ${binding.property.name} " +
throw JsonDataException("Non-null value '${binding.property.name}' " +
"was null at ${reader.path}")
}
binding.set(result, value)

View file

@ -133,7 +133,7 @@ class KotlinJsonAdapterTest {
jsonAdapter.fromJson("""{"a":4}""")
fail()
} catch(expected: JsonDataException) {
assertThat(expected).hasMessage("Required value b missing at $")
assertThat(expected).hasMessage("Required value 'b' missing at $")
}
}
@ -147,7 +147,7 @@ class KotlinJsonAdapterTest {
jsonAdapter.fromJson("{\"a\":null}")
fail()
} catch (expected: JsonDataException) {
assertThat(expected).hasMessage("Non-null value a was null at \$")
assertThat(expected).hasMessage("Non-null value 'a' was null at \$")
}
}
@ -161,7 +161,7 @@ class KotlinJsonAdapterTest {
jsonAdapter.fromJson("{\"a\":null}")
fail()
} catch (expected: JsonDataException) {
assertThat(expected).hasMessage("Non-null value a was null at \$")
assertThat(expected).hasMessage("Non-null value 'a' was null at \$")
}
}
@ -177,7 +177,7 @@ class KotlinJsonAdapterTest {
jsonAdapter.fromJson("""{"a":4,"a":4}""")
fail()
} catch(expected: JsonDataException) {
assertThat(expected).hasMessage("Multiple values for a at $.a")
assertThat(expected).hasMessage("Multiple values for 'a' at $.a")
}
}
@ -221,7 +221,7 @@ class KotlinJsonAdapterTest {
jsonAdapter.fromJson("""{"a":4,"b":null,"b":6}""")
fail()
} catch(expected: JsonDataException) {
assertThat(expected).hasMessage("Multiple values for b at $.b")
assertThat(expected).hasMessage("Multiple values for 'b' at $.b")
}
}