From c576e93d174f3106e072a2f506bca3990b541265 Mon Sep 17 00:00:00 2001 From: Ethan Nicholas Date: Thu, 7 Sep 2017 15:44:01 -0400 Subject: Switch to the new SkSL lexer. This completely replaces flex with a new in-house lexical analyzer generator, which we have done for performance and memory usage reasons. Flex requires us to copy strings every time we need the text of a token, whereas this new lexer allows us to handle strings as a (non-null-terminated) pointer and length everywhere, eliminating most string copies. Bug: skia: Change-Id: I2add26efc9e20cb699520e82abcf713af3968aca Reviewed-on: https://skia-review.googlesource.com/39780 Reviewed-by: Brian Salomon Commit-Queue: Ethan Nicholas --- src/sksl/ast/SkSLASTBlock.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sksl/ast/SkSLASTBlock.h') diff --git a/src/sksl/ast/SkSLASTBlock.h b/src/sksl/ast/SkSLASTBlock.h index 37c0e81a95..df01f62a15 100644 --- a/src/sksl/ast/SkSLASTBlock.h +++ b/src/sksl/ast/SkSLASTBlock.h @@ -16,8 +16,8 @@ namespace SkSL { * Represents a curly-braced block of statements. */ struct ASTBlock : public ASTStatement { - ASTBlock(Position position, std::vector> statements) - : INHERITED(position, kBlock_Kind) + ASTBlock(int offset, std::vector> statements) + : INHERITED(offset, kBlock_Kind) , fStatements(std::move(statements)) {} String description() const override { -- cgit v1.2.3