Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
82421d0a
Commit
82421d0a
authored
7 years ago
by
Lukas Stadler
Browse files
Options
Downloads
Patches
Plain Diff
assigning a zero-length, unnamed list as attributes removes all attributes
parent
1035b32c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/UpdateAttributes.java
+9
-9
9 additions, 9 deletions
...oracle/truffle/r/nodes/builtin/base/UpdateAttributes.java
with
9 additions
and
9 deletions
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/UpdateAttributes.java
+
9
−
9
View file @
82421d0a
...
...
@@ -62,9 +62,8 @@ import com.oracle.truffle.r.runtime.data.model.RAbstractVector;
@RBuiltin
(
name
=
"attributes<-"
,
kind
=
PRIMITIVE
,
parameterNames
=
{
"obj"
,
"value"
},
behavior
=
PURE
)
public
abstract
class
UpdateAttributes
extends
RBuiltinNode
.
Arg2
{
private
final
ConditionProfile
numAttributesProfile
=
ConditionProfile
.
createBinaryProfile
();
@Child
private
GetNamesAttributeNode
getNamesNode
=
GetNamesAttributeNode
.
create
();
@Child
private
GetNamesAttributeNode
getNamesNode
=
GetNamesAttributeNode
.
create
();
@Child
private
UpdateNames
updateNames
;
@Child
private
UpdateDimNames
updateDimNames
;
@Child
private
CastIntegerNode
castInteger
;
...
...
@@ -128,16 +127,17 @@ public abstract class UpdateAttributes extends RBuiltinNode.Arg2 {
@Specialization
protected
RAbstractContainer
updateAttributes
(
RAbstractContainer
container
,
RList
list
,
@Cached
(
"create()"
)
GetNonSharedNode
nonShared
)
{
Object
listNamesObject
=
getNamesNode
.
getNames
(
list
);
if
(
listNamesObject
==
null
||
listNamesObject
==
RNull
.
instance
)
{
throw
error
(
RError
.
Message
.
ATTRIBUTES_NAMED
);
}
RStringVector
listNames
=
(
RStringVector
)
listNamesObject
;
@Cached
(
"create()"
)
GetNonSharedNode
nonShared
,
@Cached
(
"createBinaryProfile()"
)
ConditionProfile
emptyListProfile
)
{
RAbstractContainer
result
=
((
RAbstractContainer
)
nonShared
.
execute
(
container
)).
materialize
();
if
(
numAttributes
Profile
.
profile
(
list
.
getLength
()
==
0
))
{
if
(
emptyList
Profile
.
profile
(
list
.
getLength
()
==
0
))
{
result
.
resetAllAttributes
(
true
);
}
else
{
Object
listNamesObject
=
getNamesNode
.
getNames
(
list
);
if
(
listNamesObject
==
null
||
listNamesObject
==
RNull
.
instance
)
{
throw
error
(
RError
.
Message
.
ATTRIBUTES_NAMED
);
}
RStringVector
listNames
=
(
RStringVector
)
listNamesObject
;
result
.
resetAllAttributes
(
false
);
// error checking is a little weird - seems easier to separate it than weave it into the
// update loop
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment