Skip to content

Commit d84b52a

Browse files
committed
Merge branch 'master' into 267-initial-tensor-dimensions-arent-always-accurate
2 parents 515fa5b + d99f2ff commit d84b52a

18 files changed

+37
-37
lines changed

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/cfg/PythonInducedCFG.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/******************************************************************************
1+
/*
22
* Copyright (c) 2018 IBM Corporation.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
@@ -7,7 +7,7 @@
77
*
88
* Contributors:
99
* IBM Corporation - initial API and implementation
10-
*****************************************************************************/
10+
*/
1111
package com.ibm.wala.cast.python.cfg;
1212

1313
import com.ibm.wala.cast.ir.cfg.AstInducedCFG;

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/ipa/callgraph/PythonClassMethodTrampolineTargetSelector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/******************************************************************************
1+
/*
22
* Copyright (c) 2018 IBM Corporation.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
@@ -7,7 +7,7 @@
77
*
88
* Contributors:
99
* IBM Corporation - initial API and implementation
10-
*****************************************************************************/
10+
*/
1111
package com.ibm.wala.cast.python.ipa.callgraph;
1212

1313
import static com.ibm.wala.cast.python.types.Util.getGlobalName;

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/ipa/callgraph/PythonConstructorTargetSelector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/******************************************************************************
1+
/*
22
* Copyright (c) 2018 IBM Corporation.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
@@ -7,7 +7,7 @@
77
*
88
* Contributors:
99
* IBM Corporation - initial API and implementation
10-
*****************************************************************************/
10+
*/
1111
package com.ibm.wala.cast.python.ipa.callgraph;
1212

1313
import static com.ibm.wala.cast.python.types.Util.getGlobalName;

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/ipa/callgraph/PythonInstanceMethodTrampolineTargetSelector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/******************************************************************************
1+
/*
22
* Copyright (c) 2018 IBM Corporation.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
@@ -7,7 +7,7 @@
77
*
88
* Contributors:
99
* IBM Corporation - initial API and implementation
10-
*****************************************************************************/
10+
*/
1111
package com.ibm.wala.cast.python.ipa.callgraph;
1212

1313
import static com.ibm.wala.cast.python.types.PythonTypes.STATIC_METHOD;

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/ipa/callgraph/PythonSSAPropagationCallGraphBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/******************************************************************************
1+
/*
22
* Copyright (c) 2018 IBM Corporation.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
@@ -7,7 +7,7 @@
77
*
88
* Contributors:
99
* IBM Corporation - initial API and implementation
10-
*****************************************************************************/
10+
*/
1111
package com.ibm.wala.cast.python.ipa.callgraph;
1212

1313
import static com.ibm.wala.cast.python.util.Util.IMPORT_WILDCARD_CHARACTER;

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/ipa/summaries/BuiltinFunctions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public BuiltinFunctions(IClassHierarchy cha) {
3838

3939
private static IMethod typeSummary(IClass cls, String name, TypeReference type) {
4040
PythonSummary S = typeSummary(cls, builtinFunction(name), type);
41-
return new PythonSummarizedFunction((MethodReference) S.getMethod(), S, cls);
41+
return new PythonSummarizedFunction(S.getMethod(), S, cls);
4242
}
4343

4444
private static PythonSummary typeSummary(
@@ -55,7 +55,7 @@ private static PythonSummary typeSummary(
5555

5656
private static IMethod argSummary(IClass cls, String name, int arg) {
5757
PythonSummary S = argSummary(cls, builtinFunction(name), arg);
58-
return new PythonSummarizedFunction((MethodReference) S.getMethod(), S, cls);
58+
return new PythonSummarizedFunction(S.getMethod(), S, cls);
5959
}
6060

6161
private static PythonSummary argSummary(IClass cls, TypeReference type, int arg) {
@@ -70,7 +70,7 @@ private static PythonSummary argSummary(IClass cls, TypeReference type, int arg)
7070

7171
private static IMethod noopSummary(IClass cls, String name) {
7272
PythonSummary S = noopSummary(cls, builtinFunction(name));
73-
return new PythonSummarizedFunction((MethodReference) S.getMethod(), S, cls);
73+
return new PythonSummarizedFunction(S.getMethod(), S, cls);
7474
}
7575

7676
private static PythonSummary noopSummary(IClass cls, TypeReference type) {

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/ipa/summaries/PythonInstanceMethodTrampoline.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/******************************************************************************
1+
/*
22
* Copyright (c) 2018 IBM Corporation.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
@@ -7,7 +7,7 @@
77
*
88
* Contributors:
99
* IBM Corporation - initial API and implementation
10-
*****************************************************************************/
10+
*/
1111
package com.ibm.wala.cast.python.ipa.summaries;
1212

1313
import com.ibm.wala.cast.python.types.PythonTypes;

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/ipa/summaries/PythonSummarizedFunction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/******************************************************************************
1+
/*
22
* Copyright (c) 2018 IBM Corporation.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
@@ -7,7 +7,7 @@
77
*
88
* Contributors:
99
* IBM Corporation - initial API and implementation
10-
*****************************************************************************/
10+
*/
1111
package com.ibm.wala.cast.python.ipa.summaries;
1212

1313
import com.ibm.wala.cast.python.cfg.PythonInducedCFG;

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/ipa/summaries/PythonSummary.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/******************************************************************************
1+
/*
22
* Copyright (c) 2002 - 2006 IBM Corporation.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
@@ -7,7 +7,7 @@
77
*
88
* Contributors:
99
* IBM Corporation - initial API and implementation
10-
*****************************************************************************/
10+
*/
1111
package com.ibm.wala.cast.python.ipa.summaries;
1212

1313
import com.ibm.wala.cast.python.types.PythonTypes;

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/ipa/summaries/PythonSyntheticClass.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/******************************************************************************
1+
/*
22
* Copyright (c) 2018 IBM Corporation.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
@@ -7,7 +7,7 @@
77
*
88
* Contributors:
99
* IBM Corporation - initial API and implementation
10-
*****************************************************************************/
10+
*/
1111
package com.ibm.wala.cast.python.ipa.summaries;
1212

1313
import com.ibm.wala.cast.python.types.PythonTypes;

0 commit comments

Comments
 (0)