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

Unified Diff: tools/turbolizer/schedule-view.js

Issue 2087813002: [turbolizer] Fully parse schedule data. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 months 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/turbolizer/schedule-view.js
diff --git a/tools/turbolizer/schedule-view.js b/tools/turbolizer/schedule-view.js
index 58d0af7ec56ac64d39f7e67b91393131363ba2f5..00ce20544181538f8de49640900b10cc842e0e6d 100644
--- a/tools/turbolizer/schedule-view.js
+++ b/tools/turbolizer/schedule-view.js
@@ -76,8 +76,8 @@ class ScheduleView extends TextView {
],
// Parse opcode including []
[
- [/^[A-Za-z0-9_]+(\[.+])?$/, NODE_STYLE, -1],
- [/^[A-Za-z0-9_]+(\[.+])?/, NODE_STYLE, 3]
+ [/^[A-Za-z0-9_]+(\[.*\])?$/, NODE_STYLE, -1],
+ [/^[A-Za-z0-9_]+(\[.*\])?/, NODE_STYLE, 3]
],
// Parse optional parameters
[
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698