- org.codehaus.groovy.transform.sc.transformers.CompareIdentityExpression
-
- All Implemented Interfaces and Traits:
- org.objectweb.asm.Opcodes
public class CompareIdentityExpression
extends BinaryExpression
implements org.objectweb.asm.Opcodes
Compares two objects using identity comparison.
This expression will generate bytecode using the IF_ACMPNE instruction, instead of
using the "equals" method that is currently mapped to "==" in Groovy.
This expression should only be used to compare to objects, not primitives, and only
in the context of reference equality check.
-
-
Methods Summary
-
Inherited Methods Summary
Inherited Methods
Methods inherited from class |
Name |
class BinaryExpression |
getLeftExpression, getOperation, getRightExpression, getText, isSafe, newAssignmentExpression, newInitializationExpression, setLeftExpression, setRightExpression, setSafe, toString, transformExpression, visit |
class Expression |
getType, setType, transformExpression, transformExpressions, transformExpressions |
class AnnotatedNode |
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic |
class ASTNode |
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getText, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition, visit |
Copyright © 2003-2021 The Apache Software Foundation. All rights reserved.