1// 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']);
15