d383430d93
In case of duplicate exports, always report the error for the very last one. (Fixed a bug.) BUG=v8:5358,v8:1569 Review-Url: https://codereview.chromium.org/2340953002 Cr-Commit-Position: refs/heads/master@{#39434}
8 lines
284 B
Plaintext
8 lines
284 B
Plaintext
# Copyright 2015 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
*%(basename)s:10: SyntaxError: Duplicate export of 'b'
|
|
export { b, c };
|
|
^
|
|
SyntaxError: Duplicate export of 'b'
|