1// Copyright 2020 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#include 'src/objects/js-break-iterator.h'
6
7extern class JSV8BreakIterator extends JSObject {
8  locale: String;
9  break_iterator: Foreign;  // Managed<icu::BreakIterator>;
10  unicode_string: Foreign;  // Managed<icu::UnicodeString>;
11  bound_adopt_text: Undefined|JSFunction;
12  bound_first: Undefined|JSFunction;
13  bound_next: Undefined|JSFunction;
14  bound_current: Undefined|JSFunction;
15  bound_break_type: Undefined|JSFunction;
16}
17