Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/snaka/vblex

VB6のソースコードの字句解析を行うためのCOMコンポーネントです。
https://github.com/snaka/vblex

Last synced: 11 days ago
JSON representation

VB6のソースコードの字句解析を行うためのCOMコンポーネントです。

Awesome Lists containing this project

README

        

# VBLex (Lexer for VB6)

## VBLexとは

VB6のソースコードの字句解析を行うためのCOMコンポーネントです。

## 使い方

Private Sub Command1_Click()

Dim lex As VBLexLib.Tokenizer
Set lex = New Tokenizer

lex.SourceText = "set abc = hoge(""fuga, """"moge""""!!!"")"

Debug.Print lex.SourceText

Dim tk As Token

For Each tk In lex.Tokens
Debug.Print tk.Type, tk.Text
Next

Set lex = Nothing

End Sub

上記のようなコードを実行すると,以下のような出力が得られます。

set abc = hoge("fuga, ""moge""!!!")

6 set
9 abc
3 =
9 hoge
4 (
5 fuga, "moge"!!!
4 )

TokenizerのSourceTextに解析するテキストを設定して、
Tokensコレクションにアクセスすると、字句解析結果をトークン単位で
取得することができます。

Tokenオブジェクトは、トークンの種類をあらわすTypeプロパティと
Token自身のテキストをあらわすTextプロパティを持ちます。

Typeの数値の意味は以下のようになってます。

#define TkBLANK         1

#define TkNL 2 //改行
#define TkOP 3 //演算子
#define TkPUNC 4 //括弧やカンマ記号など
#define TkSTRING 5 //文字列
#define TkSTMT 6 //ステートメント
#define TkKEYW 7 //キーワード
#define TkVB 8 // VB内部で使用しているキーワード(frm, cls ファイルのプロパティなど)
#define TkIDENT 9 // 識別子(変数名, 関数名など)
#define TkDIGIT 10 // 数字
#define TkCOMMENT 11 // コメント
#define TkOTHER 99 // 上記以外

## ライセンス

The MIT License

Copyright (c) 2010 [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

## コンタクト

[email protected]

http://d.hatena.ne.jp/snaka72/