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 CachedTemplateObject extends Struct { 6 slot_id: Smi; 7 template_object: JSArray; 8 next: CachedTemplateObject|TheHole; 9} 10 11extern class TemplateObjectDescription extends Struct { 12 raw_strings: FixedArray; 13 cooked_strings: FixedArray; 14} 15