blob: 590f9fd804f6a87c27bde1a47fb523aec12f2174 [file] [log] [blame]
Ben Murdoch61f157c2016-09-16 13:49:30 +01001// Copyright 2015 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5PR.registerLangHandler(
6 PR.createSimpleLexer(
7 [
8 [PR.PR_STRING, /^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$))/, null, '\''],
9 [PR.PR_PLAIN, /^\s+/, null, ' \r\n\t\xA0']
10 ],
11 [ // fallthroughStylePatterns
12 [PR.PR_COMMENT, /;; debug: position \d+/, null],
13 ]),
14 ['disassembly']);