| OLD | NEW |
| (Empty) |
| 1 <?php | |
| 2 # Generated by the protocol buffer compiler. DO NOT EDIT! | |
| 3 # source: google/protobuf/descriptor.proto | |
| 4 | |
| 5 /** | |
| 6 * <pre> | |
| 7 * Generated classes can be optimized for speed or code size. | |
| 8 * </pre> | |
| 9 * | |
| 10 * Protobuf enum <code>google.protobuf.FileOptions.OptimizeMode</code> | |
| 11 */ | |
| 12 namespace Google\Protobuf\Internal; | |
| 13 | |
| 14 class FileOptions_OptimizeMode | |
| 15 { | |
| 16 /** | |
| 17 * <pre> | |
| 18 * Generate complete code for parsing, serialization, | |
| 19 * </pre> | |
| 20 * | |
| 21 * <code>SPEED = 1;</code> | |
| 22 */ | |
| 23 const SPEED = 1; | |
| 24 /** | |
| 25 * <pre> | |
| 26 * etc. | |
| 27 * </pre> | |
| 28 * | |
| 29 * <code>CODE_SIZE = 2;</code> | |
| 30 */ | |
| 31 const CODE_SIZE = 2; | |
| 32 /** | |
| 33 * <pre> | |
| 34 * Generate code using MessageLite and the lite runtime. | |
| 35 * </pre> | |
| 36 * | |
| 37 * <code>LITE_RUNTIME = 3;</code> | |
| 38 */ | |
| 39 const LITE_RUNTIME = 3; | |
| 40 } | |
| 41 | |
| OLD | NEW |