OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import sample_import_mojom |
| 6 import sample_import2_mojom |
| 7 |
| 8 TWELVE = 12 |
| 9 TOO_BIG_FOR_SIGNED_INT64 = 9999999999999999999 |
| 10 DOUBLE_INFINITY = float('inf') |
| 11 DOUBLE_NEGATIVE_INFINITY = float('-inf') |
| 12 DOUBLE_NA_N = float('nan') |
| 13 FLOAT_INFINITY = float('inf') |
| 14 FLOAT_NEGATIVE_INFINITY = float('-inf') |
| 15 FLOAT_NA_N = float('nan') |
OLD | NEW |