Index: runtime/vm/flag_list.h |
diff --git a/runtime/vm/flag_list.h b/runtime/vm/flag_list.h |
index 54e6b22a62f42f428d5ee4195014a00ac9f8a377..259d09b115598a345939f3945aeacec2fc1768c3 100644 |
--- a/runtime/vm/flag_list.h |
+++ b/runtime/vm/flag_list.h |
@@ -34,6 +34,22 @@ P(pretenure_interval, int, 10, \ |
"Back off pretenuring after this many cycles.") \ |
P(pretenure_threshold, int, 98, \ |
"Trigger pretenuring when this many percent are promoted.") \ |
+R(profiler, false, bool, true, \ |
+ "Enable the profiler.") \ |
+R(support_ast_printer, false, bool, true, \ |
+ "Support the AST printer.") \ |
+R(support_debugger, false, bool, true, \ |
+ "Support the debugger.") \ |
+R(support_disassembler, false, bool, true, \ |
+ "Support the disassembler.") \ |
+R(support_il_printer, false, bool, true, \ |
+ "Support the IL printer.") \ |
+R(support_service, false, bool, true, \ |
+ "Support the service protocol.") \ |
+R(support_coverage, false, bool, true, \ |
+ "Support code coverage.") \ |
+R(support_timeline, false, bool, true, \ |
+ "Support timeline.") \ |
D(trace_handles, bool, false, \ |
"Traces allocation of handles.") \ |
D(trace_zones, bool, false, \ |
@@ -46,13 +62,6 @@ R(verify_after_gc, false, bool, false, \ |
"Enables heap verification after GC.") \ |
R(verify_before_gc, false, bool, false, \ |
"Enables heap verification before GC.") \ |
-R(support_debugger, false, bool, true, \ |
- "Support the debugger.") \ |
-R(support_service, false, bool, true, \ |
- "Support the service protocol.") \ |
-R(support_coverage, false, bool, true, \ |
- "Support code coverage.") \ |
-R(support_timeline, false, bool, true, \ |
- "Support timeline.") \ |
+ |
#endif // VM_FLAG_LIST_H_ |