• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2016 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
5# for py2/py3 compatibility
6from __future__ import print_function
7
8import sys
9
10print("""
111
12v8-foozzie source: name/to/a/file.js
132
14v8-foozzie source: name/to/file.js
15  weird error
16        ^
173
18unknown
19""")
20
21if '--bad-flag' in sys.argv:
22  print('bad behavior')
23