-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathES5ArrayIndexEnumerator.cpp
More file actions
78 lines (70 loc) · 2.9 KB
/
ES5ArrayIndexEnumerator.cpp
File metadata and controls
78 lines (70 loc) · 2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#include "RuntimeLibraryPch.h"
namespace Js
{
ES5ArrayIndexEnumerator::ES5ArrayIndexEnumerator(ES5Array* arrayObject, EnumeratorFlags flags, ScriptContext* scriptContext)
: JavascriptArrayIndexEnumeratorBase(arrayObject, flags, scriptContext)
{
Reset();
}
JavascriptString * ES5ArrayIndexEnumerator::MoveAndGetNext(PropertyId& propertyId, PropertyAttributes* attributes)
{
propertyId = Constants::NoProperty;
if (!doneArray)
{
while (true)
{
if (index == dataIndex)
{
dataIndex = arrayObject->GetNextIndex(dataIndex);
}
if (index == descriptorIndex || !GetArray()->IsValidDescriptorToken(descriptorValidationToken))
{
Js::IndexPropertyDescriptor * pResultDescriptor = nullptr;
void* tmpDescriptorValidationToken = nullptr;
descriptorIndex = GetArray()->GetNextDescriptor(
index, &pResultDescriptor, &tmpDescriptorValidationToken);
this->descriptor = pResultDescriptor;
this->descriptorValidationToken = tmpDescriptorValidationToken;
}
index = min(dataIndex, descriptorIndex);
if (index >= initialLength) // End of array
{
doneArray = true;
break;
}
if (!!(flags & EnumeratorFlags::EnumNonEnumerable)
|| index < descriptorIndex
|| (descriptor->Attributes & PropertyEnumerable))
{
if (attributes != nullptr)
{
if (index < descriptorIndex)
{
*attributes = PropertyEnumerable;
}
else
{
*attributes = descriptor->Attributes;
}
}
return this->GetScriptContext()->GetIntegerString(index);
}
}
}
return nullptr;
}
void ES5ArrayIndexEnumerator::Reset()
{
initialLength = arrayObject->GetLength();
dataIndex = JavascriptArray::InvalidIndex;
descriptorIndex = JavascriptArray::InvalidIndex;
descriptor = nullptr;
descriptorValidationToken = nullptr;
index = JavascriptArray::InvalidIndex;
doneArray = false;
}
}