10 #include "flutter/fml/logging.h"
11 #include "flutter/fml/macros.h"
18 AutoLogger(std::stringstream& logger) : logger_(logger) {}
32 std::stringstream& logger_;
37 #define COMPILER_ERROR(stream) \
38 ::impeller::compiler::AutoLogger(stream) << GetSourcePrefix()
40 #define COMPILER_ERROR_NO_PREFIX(stream) \
41 ::impeller::compiler::AutoLogger(stream)