1// Copyright 2021 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 5export const kSpaceNames = [ 6 'to_space', 7 'from_space', 8 'old_space', 9 'map_space', 10 'code_space', 11 'large_object_space', 12 'new_large_object_space', 13 'code_large_object_space', 14 'ro_space', 15]; 16 17const kSpaceColors = [ 18 '#5b8ff9', 19 '#5ad8a6', 20 '#5d7092', 21 '#f6bd16', 22 '#e8684a', 23 '#6dc8ec', 24 '#9270ca', 25 '#ff9d4d', 26 '#269a99', 27]; 28 29export function getColorFromSpaceName(space_name) { 30 const index = kSpaceNames.indexOf(space_name); 31 return kSpaceColors[index]; 32} 33