01a31275bd
dart implementation of List in the core library. Do the same for map literal creation. Review URL: https://codereview.chromium.org//11299020 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@14997 260f80e4-7a28-3924-810f-c04153c831b5
46 lines
966 B
C++
46 lines
966 B
C++
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef VM_SNAPSHOT_IDS_H_
|
|
#define VM_SNAPSHOT_IDS_H_
|
|
|
|
#include "vm/raw_object.h"
|
|
|
|
namespace dart {
|
|
|
|
// Index for predefined singleton objects used in a snapshot.
|
|
enum {
|
|
kNullObject = 0,
|
|
kSentinelObject,
|
|
kEmptyArrayObject,
|
|
kTrueValue,
|
|
kFalseValue,
|
|
kClassIdsOffset = kFalseValue,
|
|
|
|
// The class ids of predefined classes are included in this list
|
|
// at an offset of kClassIdsOffset.
|
|
|
|
kObjectType = (kNumPredefinedCids + kClassIdsOffset),
|
|
kNullType,
|
|
kDynamicType,
|
|
kVoidType,
|
|
kFunctionType,
|
|
kNumberType,
|
|
kSmiType,
|
|
kMintType,
|
|
kDoubleType,
|
|
kIntType,
|
|
kBoolType,
|
|
kStringType,
|
|
kArrayType,
|
|
|
|
kInstanceObjectId,
|
|
kMaxPredefinedObjectIds,
|
|
kInvalidIndex = -1,
|
|
};
|
|
|
|
} // namespace dart
|
|
|
|
#endif // VM_SNAPSHOT_IDS_H_
|