Skip to content
This repository has been archived by the owner on May 11, 2020. It is now read-only.

WIP: add a wast format scanner+parser #50

Merged
merged 7 commits into from
Feb 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ matrix:
allow_failures:
- go: master
include:
- go: 1.13.x
- go: 1.14.x
env:
- COVERAGE="-cover -race"
- go: 1.12.x
- go: 1.13.x
env:
- COVERAGE=""
- go: master
Expand Down
8 changes: 8 additions & 0 deletions wast/doc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2017 The go-interpreter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Package wast provides functions to handle wast files.
//
// See https://webassembly.github.io/spec/core/text/
package wast
Loading