-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCompileInfo.cls
More file actions
42 lines (33 loc) · 1.1 KB
/
CompileInfo.cls
File metadata and controls
42 lines (33 loc) · 1.1 KB
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
' Creole Forth for VB
' Version 0.01
' Copyright 2021 Joseph M. O'Connor
' This Source Code Form is subject to the terms of the Mozilla Public
' License, v. 2.0. If a copy of the MPL was not distributed with this
' file, You can obtain one at http://mozilla.org/MPL/2.0/.
Option Explicit
Dim lngReturnVal As Long
Dim sFQNameField As String
Dim sToken As String
Dim sCompileAction As String
' Colon definitions are built into the PAD area - each new entry
' is a triplet consisting of the word's fully qualified name, its
' tokenization (either dictionary address or literal), and associated
' compilation action.
Public Property Let FQNameField(Value As String)
sFQNameField = Value
End Property
Public Property Get FQNameField() As String
FQNameField = sFQNameField
End Property
Public Property Let Token(Value As String)
sToken = Value
End Property
Public Property Get Token() As String
Token = sToken
End Property
Public Property Let CompileAction(Value As String)
sCompileAction = Value
End Property
Public Property Get CompileAction() As String
CompileAction = sCompileAction
End Property