Changeset 13822 for branches/dev-jk-2597/Compiler/ModelicaMiddleEnd/src/jastadd/scalarization/Scalarization.jrag
- Timestamp:
- Oct 23, 2019 2:44:30 PM (7 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev-jk-2597/Compiler/ModelicaMiddleEnd/src/jastadd/scalarization/Scalarization.jrag
r13357 r13822 924 924 FTempAccessExp res; 925 925 if (inFunction()) { 926 res = new FTempAccessExp(new FAccessFull(name, fas)); 926 if (fas == null) { 927 res = new FTempAccessExp(new FAccessFull(name)); 928 } else { 929 res = new FTempAccessExp(new FAccessFull(name, fas)); 930 } 927 931 } else { 928 932 if (fas == null) {
Note: See TracChangeset
for help on using the changeset viewer.