version 1.19, 2005/05/04 00:08:38 |
version 1.22, 2005/07/26 05:31:52 |
|
|
%% $OpenXM: OpenXM/src/asir-doc/exp/exp-ja.texi,v 1.18 2004/11/24 23:00:23 takayama Exp $ |
%% $OpenXM: OpenXM/src/asir-doc/exp/exp-ja.texi,v 1.21 2005/07/25 12:23:05 takayama Exp $ |
\input texinfo |
\input texinfo |
@iftex |
@iftex |
@catcode`@#=6 |
@catcode`@#=6 |
Line 128 ChangeLog $B$N9`L\$O(B www.openxm.org $B$N(B cvswe |
|
Line 128 ChangeLog $B$N9`L\$O(B www.openxm.org $B$N(B cvswe |
|
* remove_paren:: |
* remove_paren:: |
* set_secure_mode:: |
* set_secure_mode:: |
* set_secure_flag:: |
* set_secure_flag:: |
|
* initialize_static_variable:: |
@end menu |
@end menu |
|
|
@comment --- $B"~"~"~"~(B $B4X?t(B quotetotex, quotetotex_env $B$N@bL@(B $B"~"~"~"~(B |
@comment --- $B"~"~"~"~(B $B4X?t(B quotetotex, quotetotex_env $B$N@bL@(B $B"~"~"~"~(B |
|
|
@end itemize |
@end itemize |
|
|
|
|
@node quote_flatten,,, $B<B83E*;EMM$N4X?t(B |
@node flatten_quote,,, $B<B83E*;EMM$N4X?t(B |
@subsection @code{quote_flatten} |
@subsection @code{flatten_quote} |
@findex quote_flatten |
@findex flatten_quote |
|
|
@comment --- $B4X?t$N4JC1$J@bL@(B --- |
@comment --- $B4X?t$N4JC1$J@bL@(B --- |
@table @t |
@table @t |
@item quote_flatten(@var{q},@var{op}) |
@item flatten_quote(@var{q},@var{op}) |
:: quote $B$N3g8L$r$H$j$5$k(B. |
:: quote $B$N3g8L$r$H$j$5$k(B. |
@end table |
@end table |
|
|
Line 1111 Quote $B7?$N%G!<%?$OLZ9=B$$r$7$F$$$k(B |
|
Line 1112 Quote $B7?$N%G!<%?$OLZ9=B$$r$7$F$$$k(B |
|
$B$?$H$($P(B (1+2)+(3+4) $B$H$$$&I=8=$r(B 1+2+3+4 $B$KJQ49$9$k(B. |
$B$?$H$($P(B (1+2)+(3+4) $B$H$$$&I=8=$r(B 1+2+3+4 $B$KJQ49$9$k(B. |
@item |
@item |
$B8=:_$N<BAu$G$O(B n-ary $B$N1i;;;R$ODj5A$5$l$F$$$J$$$N$G(B, |
$B8=:_$N<BAu$G$O(B n-ary $B$N1i;;;R$ODj5A$5$l$F$$$J$$$N$G(B, |
1+2+3 $B$O<B$O(B (1+2)+3 $B$HI=8=$5$l$F$$$k(B. |
1+2+3 $B$O<B$O(B 1+(2+3) $B$HI=8=$5$l$F$$$k(B. |
$B$D$^$j(B + $B1i;;;R$O:87k9gE*$G$"$k(B. |
$B$D$^$j(B + $B1i;;;R$O1&7k9gE*$G$"$k(B. |
|
@item R=0; for (I=0; I<N; I++) R = R+ P[I]; $B$J$kB-$7;;$r7+$jJV$9$H(B, |
|
+ $B$O:87k9gE*$K$J$k(B. $B1&7k9gE*$KJQ49$9$k$K$O(B flatten_quote $B$r8F$V(B. |
|
@item $BL>A0$O(B quote_flatten $B$G$J$/(B flatten_quote $B$G$"$k(B. |
@end itemize |
@end itemize |
|
|
@example |
@example |
Line 1469 cgi-asir.sh $B$G$O(B |
|
Line 1473 cgi-asir.sh $B$G$O(B |
|
@item |
@item |
1.33 OpenXM_contrib2/asir2000/parse/parse.h |
1.33 OpenXM_contrib2/asir2000/parse/parse.h |
@end itemize |
@end itemize |
|
|
|
@node initialize_static_variable,,, $B<B83E*;EMM$N4X?t(B |
|
@subsection @code{initialize_static_variable} |
|
@findex initialize_static_variable |
|
|
|
|
|
@comment --- $B@bL@(B --- |
|
@table @t |
|
@item static $BJQ?t$N=i4|2=$NLdBjE@(B. $B=i4|2=$N;~$K(B segmentation fault $B$,$*$-$k(B. |
|
@end table |
|
|
|
|
|
@itemize @bullet |
|
@item static $BJQ?t$N<h07(B. |
|
$B2<$NNc$r;2>H$N$3$H(B. |
|
@end itemize |
|
|
|
|
|
@example |
|
if (1) @{ |
|
module abc; |
|
static A; |
|
A=1; |
|
endmodule; |
|
@} else @{ @}; |
|
|
|
end$ |
|
$B$r(B t.rr $B$H$9$k$H$-(B, |
|
|
|
[6] load("./t.rr"); |
|
1 |
|
internal error (SEGV) |
|
$B$H$J$k(B. |
|
|
|
t.rr $B$r(B |
|
if (1) @{ |
|
module abc; |
|
static A; |
|
localf initA; |
|
localf foo; |
|
def initA() @{ |
|
A=1; |
|
@} |
|
initA(); |
|
def foo() @{ |
|
return A; |
|
@} |
|
endmodule; |
|
@} else @{ @}; |
|
|
|
end$ |
|
$B$H$9$k$H@5$7$/=i4|2=$5$l$k(B. |
|
@end example |
|
|
|
@comment --- ChangeLog |
|
@noindent |
|
ChangeLog |
|
@itemize @bullet |
|
@item oxasir-win.rr $B$N<h07$GLdBjE@$H$7$FIb>e(B. 2005.07.25. |
|
@item oxasir-win.rr $B$N<h07$G(B double quote $B$N<h$j07$$$KLdBj$,$"$C$?$,(B, $B$3$l$O(B asir2000/io/ox_asir.c, 1.58, $B$GLdBjE@2r7h(B. |
|
@item ox_asir $B$K7W;;$r0MMj$9$k;~$O(B if (1) @{ ... @}$B$G0O$`(B. |
|
@end itemize |
|
|
|
|
@comment **************************************************************** |
@comment **************************************************************** |
@comment --- $B"~"~"~"~(B $B0J2<B>$N4X?t$K$D$$$F??;w$7$F5-=R$9$k(B. $B"~"~"~"~(B |
@comment --- $B"~"~"~"~(B $B0J2<B>$N4X?t$K$D$$$F??;w$7$F5-=R$9$k(B. $B"~"~"~"~(B |