Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
dart::DisableBackgroundCompilationScope Class Reference

#include <unit_test.h>

Inheritance diagram for dart::DisableBackgroundCompilationScope:
dart::ValueObject

Public Member Functions

 DisableBackgroundCompilationScope ()
 
 ~DisableBackgroundCompilationScope ()
 
- Public Member Functions inherited from dart::ValueObject
 ValueObject ()
 
 ~ValueObject ()
 

Detailed Description

Definition at line 762 of file unit_test.h.

Constructor & Destructor Documentation

◆ DisableBackgroundCompilationScope()

dart::DisableBackgroundCompilationScope::DisableBackgroundCompilationScope ( )
inline

Definition at line 764 of file unit_test.h.

765 : FLAG_background_compilation_(FLAG_background_compilation) {
766 FLAG_background_compilation = false;
767 }

◆ ~DisableBackgroundCompilationScope()

dart::DisableBackgroundCompilationScope::~DisableBackgroundCompilationScope ( )
inline

Definition at line 769 of file unit_test.h.

769 {
770 FLAG_background_compilation = FLAG_background_compilation_;
771 }

The documentation for this class was generated from the following file: