mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-17 06:21:36 +03:00
c4dcaee1b9
This commit starts to add infrastructure for targeted diagnostics in the `#[wasm_bindgen]` attribute, intended eventually at providing much better errors as they'll be pointing to exactly the code in question rather than always to a `#[wasm_bindgen]` attribute. The general changes are are: * A new `Diagnostic` error type is added to the backend. A `Diagnostic` is created with a textual error or with a span, and it can also be created from a list of diagnostics. A `Diagnostic` implements `ToTokens` which emits a bunch of invocations of `compile_error!` that will cause rustc to later generate errors. * Fallible implementations of `ToTokens` have switched to using a new trait, `TryToTokens`, which returns a `Result` to use `?` with. * The `MacroParse` trait has changed to returning a `Result` to propagate errors upwards. * A new `ui-tests` crate was added which uses `compiletest_rs` to add UI tests. These UI tests will verify that our output improves over time and does not regress. This test suite is added to CI as a new builder as well. * No `Diagnostic` instances are created just yet, everything continues to panic and return `Ok`, with the one exception of the top-level invocations of `syn::parse` which now create a `Diagnostic` and pass it along. This commit does not immediately improve diagnostics but the intention is that it is laying the groundwork for improving diagnostics over time. It should ideally be much easier to contribute improved diagnostics after this commit! cc #601
43 lines
1.5 KiB
Bash
Executable File
43 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
# file at the top-level directory of this distribution and at
|
|
# http://rust-lang.org/COPYRIGHT.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
# option. This file may not be copied, modified, or distributed
|
|
# except according to those terms.
|
|
|
|
# A script to update the references for particular tests. The idea is
|
|
# that you do a run, which will generate files in the build directory
|
|
# containing the (normalized) actual output of the compiler. This
|
|
# script will then copy that output and replace the "expected output"
|
|
# files. You can then commit the changes.
|
|
#
|
|
# If you find yourself manually editing a foo.stderr file, you're
|
|
# doing it wrong.
|
|
|
|
MYDIR=$(dirname $0)
|
|
|
|
BUILD_DIR="../../../target/tests/ui"
|
|
|
|
while [[ "$1" != "" ]]; do
|
|
STDERR_NAME="${1/%.rs/.stderr}"
|
|
STDOUT_NAME="${1/%.rs/.stdout}"
|
|
shift
|
|
if [ -f $BUILD_DIR/$STDOUT_NAME ] && \
|
|
! (diff $BUILD_DIR/$STDOUT_NAME $MYDIR/$STDOUT_NAME >& /dev/null); then
|
|
echo updating $MYDIR/$STDOUT_NAME
|
|
cp $BUILD_DIR/$STDOUT_NAME $MYDIR/$STDOUT_NAME
|
|
fi
|
|
if [ -f $BUILD_DIR/$STDERR_NAME ] && \
|
|
! (diff $BUILD_DIR/$STDERR_NAME $MYDIR/$STDERR_NAME >& /dev/null); then
|
|
echo updating $MYDIR/$STDERR_NAME
|
|
cp $BUILD_DIR/$STDERR_NAME $MYDIR/$STDERR_NAME
|
|
fi
|
|
done
|
|
|
|
|