Mercurial > hg > Papers > 2021 > anatofuz-master
annotate paper/src/replaceCodeGearName2.pl @ 158:d2be76d48b00 default tip
update
author | anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 17 Feb 2021 14:37:21 +0900 |
parents | f495a5af763c |
children |
rev | line source |
---|---|
89 | 1 } elsif (/^\_\_code (\w+)\((.*)\)(.*)/) { |
2 debug_print("generateDataGear",__LINE__, $_) if $opt_debug; | |
3 $inCode = 1; | |
4 %localVarType = (); | |
5 $currentCodeGearName = $1; | |
6 my $args = $2; | |
7 my $tail = $3; | |
8 | |
9 #replace Code Gear Name to Implemenatation | |
10 if (exists $replaceCodeGearNames->{$currentCodeGearName}) { | |
11 $currentCodeGearName = $replaceCodeGearNames->{$currentCodeGearName}; | |
12 } | |
13 |