From a65aa72733af2f1c9290a4933e57af3486a64aa4 Mon Sep 17 00:00:00 2001
From: Dave Mc Nicoll <info@mcnd.ca>
Date: Wed, 29 Mar 2023 14:02:11 +0000
Subject: [PATCH] - Fixed bug  Creation of dynamic property
 Picea\Compiler\BaseContext::

---
 src/Compiler/Context.php | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/Compiler/Context.php b/src/Compiler/Context.php
index 02d0c04..718d5ec 100644
--- a/src/Compiler/Context.php
+++ b/src/Compiler/Context.php
@@ -20,6 +20,8 @@ abstract class Context {
     
     public string $filePath = "";
 
+    public string $classPath = "";
+
     public array $switchStack = [];
 
     public array $iterateStack = [];