File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -56,10 +56,10 @@ class SyntheticChildrenFrontEnd {
56
56
// / This function is assumed to always succeed and if it fails, the front-end
57
57
// / should know to deal with it in the correct way (most probably, by refusing
58
58
// / to return any children). The return value of \ref Update should actually
59
- // / be interpreted as "ValueObjectSyntheticFilter cache is good/bad". If this
59
+ // / be interpreted as "ValueObjectSynthetic cache is good/bad". If this
60
60
// / function returns \ref lldb::ChildCacheState::eReuse, \ref
61
- // / ValueObjectSyntheticFilter is allowed to use the children it fetched
62
- // / previously and cached. Otherwise, \ref ValueObjectSyntheticFilter must
61
+ // / ValueObjectSynthetic is allowed to use the children it fetched
62
+ // / previously and cached. Otherwise, \ref ValueObjectSynthetic must
63
63
// / throw away its cache, and query again for children.
64
64
virtual lldb::ChildCacheState Update () = 0;
65
65
Original file line number Diff line number Diff line change 1
- // ===-- ValueObjectSyntheticFilter .h ----------------------------*- C++ -*-===//
1
+ // ===-- ValueObjectSynthetic .h ----------------------------*- C++ -*-===//
2
2
//
3
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ add_lldb_library(lldbValueObject
14
14
ValueObjectList.cpp
15
15
ValueObjectMemory.cpp
16
16
ValueObjectRegister.cpp
17
- ValueObjectSyntheticFilter .cpp
17
+ ValueObjectSynthetic .cpp
18
18
ValueObjectUpdater.cpp
19
19
ValueObjectVariable.cpp
20
20
ValueObjectVTable.cpp
Original file line number Diff line number Diff line change 46
46
#include " lldb/ValueObject/ValueObjectConstResult.h"
47
47
#include " lldb/ValueObject/ValueObjectDynamicValue.h"
48
48
#include " lldb/ValueObject/ValueObjectMemory.h"
49
- #include " lldb/ValueObject/ValueObjectSyntheticFilter .h"
49
+ #include " lldb/ValueObject/ValueObjectSynthetic .h"
50
50
#include " lldb/ValueObject/ValueObjectVTable.h"
51
51
#include " lldb/lldb-private-types.h"
52
52
Original file line number Diff line number Diff line change 1
- // ===-- ValueObjectSyntheticFilter .cpp ------------------------------------===//
1
+ // ===-- ValueObjectSynthetic .cpp ------------------------------------===//
2
2
//
3
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- #include " lldb/ValueObject/ValueObjectSyntheticFilter .h"
9
+ #include " lldb/ValueObject/ValueObjectSynthetic .h"
10
10
11
11
#include " lldb/Core/Value.h"
12
12
#include " lldb/DataFormatters/TypeSynthetic.h"
You can’t perform that action at this time.
0 commit comments