mirror of
https://github.com/taigrr/wails.git
synced 2026-04-17 04:05:12 -07:00
Squashed 'v2/' content from commit 72ef153
git-subtree-dir: v2 git-subtree-split: 72ef15359e36e42b18d9407f74c762f83eb9a099
This commit is contained in:
10
internal/parse/README.md
Normal file
10
internal/parse/README.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# Parse
|
||||
|
||||
Parse will attempt to parse your Wails project to perform a number of tasks:
|
||||
* Verify that you have bound struct pointers
|
||||
* Generate JS helper files/docs
|
||||
|
||||
It currently checks bindings correctly if your code binds using one of the following methods:
|
||||
* Literal Binding: `app.Bind(&MyStruct{})`
|
||||
* Variable Binding: `app.Bind(m)` - m can be `m := &MyStruct{}` or `m := newMyStruct()`
|
||||
* Function Binding: `app.Bind(newMyStruct())`
|
||||
Reference in New Issue
Block a user