Dramatically speeding up HIR comments.

This commit is contained in:
Ben Vanik
2015-06-10 00:28:02 -07:00
parent 56a4620cdf
commit 14e1438ec0
3 changed files with 42 additions and 16 deletions

View File

@@ -68,7 +68,9 @@ class HIRBuilder {
// static allocations:
// Value* AllocStatic(size_t length);
void Comment(const char* format, ...);
void Comment(const char* value);
void Comment(const StringBuffer& value);
void CommentFormat(const char* format, ...);
void Nop();