1#     Copyright 2021, Kay Hayen, mailto:kay.hayen@gmail.com
2#
3#     Part of "Nuitka", an optimizing Python compiler that is compatible and
4#     integrates with CPython, but also works on its own.
5#
6#     Licensed under the Apache License, Version 2.0 (the "License");
7#     you may not use this file except in compliance with the License.
8#     You may obtain a copy of the License at
9#
10#        http://www.apache.org/licenses/LICENSE-2.0
11#
12#     Unless required by applicable law or agreed to in writing, software
13#     distributed under the License is distributed on an "AS IS" BASIS,
14#     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15#     See the License for the specific language governing permissions and
16#     limitations under the License.
17#
18""" Builtin vars node.
19
20Not used much, esp. not in the form with arguments. Maybe used in some meta programming,
21and hopefully can be predicted, because at run time, it is hard to support.
22"""
23
24
25from .ExpressionBases import ExpressionChildHavingBase
26
27
28class ExpressionBuiltinVars(ExpressionChildHavingBase):
29    kind = "EXPRESSION_BUILTIN_VARS"
30
31    named_child = "source"
32
33    def __init__(self, source, source_ref):
34        ExpressionChildHavingBase.__init__(self, value=source, source_ref=source_ref)
35
36    def computeExpression(self, trace_collection):
37        # TODO: Should be possible to predict this.
38
39        trace_collection.onExceptionRaiseExit(BaseException)
40        return self, None, None
41