• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2019 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
5extern class ArrayBoilerplateDescription extends Struct {
6  flags: Smi;
7  constant_elements: FixedArrayBase;
8}
9
10extern class RegExpBoilerplateDescription extends Struct {
11  data: FixedArray;
12  source: String;
13  flags: SmiTagged<JSRegExpFlags>;
14}
15