1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
U
Þ=®d,ã@sºdZddlZddlmZddlmZddlmZejrBddl    m
Z
Gdd    „d    eƒZ ej ej ed
œd d „ZejejejejfZejejejejejfZej ejejed
œd d„ZdS)z_Functions that expose information about templates that might be
interesting for introspection.
éNé)Únodes)Ú CodeGenerator)ÚFrame)Ú EnvironmentcsLeZdZdZdddœ‡fdd„ Zeddœdd    „Zedd
œ‡fd d „ Z‡Z    S) ÚTrackingCodeGeneratorz.We abuse the code generator for introspection.rN)Ú environmentÚreturncstƒ |dd¡tƒ|_dS)Nz<introspection>)ÚsuperÚ__init__ÚsetÚundeclared_identifiers)Úselfr©Ú    __class__©úBd:\z\workplace\vscode\pyvenv\venv\Lib\site-packages\jinja2/meta.pyr szTrackingCodeGenerator.__init__)Úxr    cCsdS)z Don't write.Nr)rrrrrÚwriteszTrackingCodeGenerator.write)Úframer    csJtƒ |¡|jj ¡D],\}\}}|dkr||jjkr|j |¡qdS)z$Remember all undeclared identifiers.ÚresolveN)    r
Ú enter_frameÚsymbolsÚloadsÚitemsrÚglobalsr Úadd)rrÚ_ÚactionÚparamrrrrs z!TrackingCodeGenerator.enter_frame)
Ú__name__Ú
__module__Ú __qualname__Ú__doc__r ÚstrrrrÚ __classcell__rrrrrsr)Úastr    cCst|jƒ}| |¡|jS)aReturns a set of all variables in the AST that will be looked up from
    the context at runtime.  Because at compile time it's not known which
    variables will be used depending on the path the execution takes at
    runtime, all variables are returned.
 
    >>> from jinja2 import Environment, meta
    >>> env = Environment()
    >>> ast = env.parse('{% set foo = 42 %}{{ bar + foo }}')
    >>> meta.find_undeclared_variables(ast) == {'bar'}
    True
 
    .. admonition:: Implementation
 
       Internally the code generator is used for finding undeclared variables.
       This is good to know because the code generator might raise a
       :exc:`TemplateAssertionError` during compilation and as a matter of
       fact this function can currently raise that exception as well.
    )rrÚvisitr )r&ZcodegenrrrÚfind_undeclared_variables!s
 
r(ccsÌ| t¡D]¼}|j}t|tjƒspt|tjtjfƒrh|jD],}t|tjƒr^t|j    t
ƒrd|j    Vq8dVq8q
dVq
t|j    t
ƒr†|j    Vq
t|tj ƒrÀt|j    t t fƒrÀ|j    D]}t|t
ƒr¨|Vq¨q
dVq
dS)abFinds all the referenced templates from the AST.  This will return an
    iterator over all the hardcoded template extensions, inclusions and
    imports.  If dynamic inheritance or inclusion is used, `None` will be
    yielded.
 
    >>> from jinja2 import Environment, meta
    >>> env = Environment()
    >>> ast = env.parse('{% extends "layout.html" %}{% include helper %}')
    >>> list(meta.find_referenced_templates(ast))
    ['layout.html', None]
 
    This function is useful for dependency tracking.  For example if you want
    to rebuild parts of the website after a layout template has changed.
    N)Zfind_allÚ
_ref_typesÚtemplateÚ
isinstancerZConstÚTupleÚListrÚvaluer$ÚIncludeÚtupleÚlist)r&Únoder*Z template_namerrrÚfind_referenced_templates=s* 
 
 
 
ÿ
 
 
r3)r#ÚtypingÚtÚrÚcompilerrrÚ TYPE_CHECKINGrrrÚTemplateÚSetr$r(ZExtendsZ
FromImportZImportr/r)ÚUnionZ_RefTypeÚIteratorÚOptionalr3rrrrÚ<module>s