Skip to content

Commit 534b42d

Browse files
committed
Formatting
1 parent 133ece9 commit 534b42d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/set/FrozenSetBuiltins.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -211,20 +211,20 @@ PBaseSet doPBaseSet(PFrozenSet left, PBaseSet right) {
211211

212212
@Specialization
213213
PBaseSet doPBaseSet(PSet left, PDictView right,
214-
@Cached("create()") SetNodes.ConstructSetNode constructSetNode) {
214+
@Cached("create()") SetNodes.ConstructSetNode constructSetNode) {
215215
PSet rightSet = constructSetNode.executeWith(right);
216216
HashingStorage intersectedStorage = getIntersectNode().execute(left.getDictStorage(), rightSet.getDictStorage());
217217
return factory().createSet(intersectedStorage);
218218
}
219-
219+
220220
@Specialization
221221
PBaseSet doPBaseSet(PFrozenSet left, PDictView right,
222-
@Cached("create()") SetNodes.ConstructSetNode constructSetNode) {
222+
@Cached("create()") SetNodes.ConstructSetNode constructSetNode) {
223223
PSet rightSet = constructSetNode.executeWith(right);
224224
HashingStorage intersectedStorage = getIntersectNode().execute(left.getDictStorage(), rightSet.getDictStorage());
225225
return factory().createSet(intersectedStorage);
226226
}
227-
227+
228228
@Fallback
229229
Object doAnd(Object self, Object other) {
230230
throw raise(PythonErrorType.TypeError, "unsupported operand type(s) for &: '%p' and '%p'", self, other);
@@ -284,23 +284,23 @@ PBaseSet doPBaseSet(PFrozenSet left, PBaseSet right) {
284284
HashingStorage intersectedStorage = getUnionNode().execute(left.getDictStorage(), right.getDictStorage());
285285
return factory().createFrozenSet(intersectedStorage);
286286
}
287-
287+
288288
@Specialization
289289
PBaseSet doPBaseSet(PSet left, PDictView right,
290-
@Cached("create()") SetNodes.ConstructSetNode constructSetNode) {
290+
@Cached("create()") SetNodes.ConstructSetNode constructSetNode) {
291291
PSet rightSet = constructSetNode.executeWith(right);
292292
HashingStorage intersectedStorage = getUnionNode().execute(left.getDictStorage(), rightSet.getDictStorage());
293293
return factory().createSet(intersectedStorage);
294294
}
295-
295+
296296
@Specialization
297297
PBaseSet doPBaseSet(PFrozenSet left, PDictView right,
298-
@Cached("create()") SetNodes.ConstructSetNode constructSetNode) {
298+
@Cached("create()") SetNodes.ConstructSetNode constructSetNode) {
299299
PSet rightSet = constructSetNode.executeWith(right);
300300
HashingStorage intersectedStorage = getUnionNode().execute(left.getDictStorage(), rightSet.getDictStorage());
301301
return factory().createSet(intersectedStorage);
302302
}
303-
303+
304304
@Fallback
305305
Object doOr(Object self, Object other) {
306306
throw raise(PythonErrorType.TypeError, "unsupported operand type(s) for |: '%p' and '%p'", self, other);

0 commit comments

Comments
 (0)