Václav Kubernát | 195eeea | 2018-05-18 13:52:36 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/ |
| 3 | * Copyright (C) 2018 FIT CVUT, https://fit.cvut.cz/ |
| 4 | * |
| 5 | * Written by Václav Kubernát <kubervac@fit.cvut.cz> |
| 6 | * |
| 7 | */ |
| 8 | |
| 9 | #include "parser_context.hpp" |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 10 | ParserContext::ParserContext(const Schema& schema, const path_ curDir) |
| 11 | : m_schema(schema) |
Václav Kubernát | 195eeea | 2018-05-18 13:52:36 +0200 | [diff] [blame] | 12 | { |
Václav Kubernát | 2a9e179 | 2018-05-28 12:53:48 +0200 | [diff] [blame] | 13 | m_curPath = curDir; |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame^] | 14 | |
| 15 | if (!m_curPath.m_nodes.empty() && m_curPath.m_nodes.at(0).m_prefix) |
| 16 | m_topLevelModulePresent = true; |
Václav Kubernát | 195eeea | 2018-05-18 13:52:36 +0200 | [diff] [blame] | 17 | } |