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

Unified Diff: dart/tools/utils/elisp/dart-mode.el

Issue 9836003: Recognize VM stack traces to enable M-x next-error, etc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 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: dart/tools/utils/elisp/dart-mode.el
diff --git a/dart/tools/utils/elisp/dart-mode.el b/dart/tools/utils/elisp/dart-mode.el
index 5088d65713dabef52722ddb394e0c1bbbf9dc6c2..c1aaf8fa420e703bda9f96a10aa0ac1c3dc40523 100644
--- a/dart/tools/utils/elisp/dart-mode.el
+++ b/dart/tools/utils/elisp/dart-mode.el
@@ -160,6 +160,9 @@ Key bindings:
(run-hooks 'dart-mode-hook)
(c-update-modeline))
+(add-to-list 'compilation-error-regexp-alist 'dart)
+(add-to-list 'compilation-error-regexp-alist-alist '(dart "Function: '[^']*' url: 'file://\\([^']*\\)' line:\\([0-9]*\\) col:\\([0-9]*\\)" 1 2 3))
+
(provide 'dart-mode)
;;; dart-mode.el ends here
« 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