| Index: lib/html/scripts/systemnative.py
|
| diff --git a/lib/html/scripts/systemnative.py b/lib/html/scripts/systemnative.py
|
| index 724595cfdaec4cf61c0b027f7118551a57e4272d..a8fcda1dd63a4e6175f5e5852fe012c4ce1de280 100644
|
| --- a/lib/html/scripts/systemnative.py
|
| +++ b/lib/html/scripts/systemnative.py
|
| @@ -503,7 +503,7 @@ class DartiumBackend(object):
|
| for i in range(0, argument_count):
|
| argument = operation.arguments[i]
|
| argument_name = argument_names[i]
|
| - checks[i] = '(%s is %s || %s === null)' % (
|
| + checks[i] = '(%s is %s || %s == null)' % (
|
| argument_name, self._DartType(argument.type.id), argument_name)
|
| GenerateCall(operation, argument_count, checks)
|
|
|
|
|