Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 433 Bytes

CONTRIBUTING.md

File metadata and controls

14 lines (10 loc) · 433 Bytes

Contributing Guide

Building WASM library

$ wasm-pack build aps_core --target web --out-dir=../editor/lib

Parser

  • When adding any new calls to functions that return Value, make sure you wrap it in a tee!(..) to make sure that we handle exceptions correctly.
  • When calling eval_scope() make sure you handle if the returned value is not Value::Void because that means there was a return statement.