Content deleted Content added
m r2.7.1) (Robot: Adding es:Análisis de control del flujo |
copyedit |
||
Line 1:
In [[computer science]], '''
For many languages, the control flow of a program is explicit in a program's source code. As a result, control-flow analysis implicitly usually refers to a [[static analysis]] technique for determining the receiver(s) of function or method calls in computer programs written in a [[higher-order programming language]]. For both [[functional programming language]]s and [[object-oriented programming language]]s, the term CFA refers to an algorithm that computes control flow.▼
| author = Neil D. Jones
| title = Flow analysis of lambda expressions
Line 10 ⟶ 6:
| doi = 10.1007/3-540-10843-2_10
| pages = 114–128
}}</ref> and [[Olin Shivers]].<ref>{{citation
| last = Shivers
| first = Olin
Line 22 ⟶ 18:
| year = 1988
| doi = 10.1145/53990.54007
}}</ref> For both [[functional programming language]]s and [[object-oriented programming language]]s, the term CFA, and elaborations such as ''k''-CFA, refer to specific algorithms that compute control flow.
(lambda (f) (f x))▼
▲For many languages, the control flow of a program is explicit in a program's source code.
<source lang="scheme">
</source>
it is unclear to which procedure <code>f</code> may refer. To determine the possible targets, a control-flow analysis must consider where this expression could be invoked, and what argument it may receive.
Techniques such as [[
==References==
|