class_json_consts.py 523 B

12345678910
  1. # Copyright 2020 The Chromium 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. """Various class dependency constants used in de/serialization."""
  5. # Node-specific constants
  6. PACKAGE = 'package' # The package component of a class's full name.
  7. CLASS = 'class' # The class component of a class's full name.
  8. BUILD_TARGETS = 'build_targets' # Which build targets the class is in
  9. NESTED_CLASSES = 'nested_classes' # Nested classes of a class.