Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(664)

Unified Diff: src/lexer/experimental-scanner.h

Issue 71373004: Add a flag to lexer-shell to replicate input file. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/lexer/experimental-scanner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lexer/experimental-scanner.h
diff --git a/src/lexer/experimental-scanner.h b/src/lexer/experimental-scanner.h
index 9ff5e479d757f26fdcbaed71da7292b65578c0ee..849f5a034039b8e30da4a0b520fc4ca90d3a1940 100644
--- a/src/lexer/experimental-scanner.h
+++ b/src/lexer/experimental-scanner.h
@@ -62,7 +62,8 @@ class ExperimentalScanner {
ExperimentalScanner(const char* fname,
bool read_all_at_once,
- Isolate* isolate);
+ Isolate* isolate,
+ int repeat);
~ExperimentalScanner();
Token::Value Next();
@@ -88,6 +89,8 @@ class ExperimentalScanner {
int length_;
};
+const byte* ReadFile(const char* name, Isolate* isolate, int* size, int repeat);
+
} } // namespace v8::internal
#endif
« no previous file with comments | « no previous file | src/lexer/experimental-scanner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698