mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-31 01:11:06 +00:00
Squelch warnings in webidl tests
This commit is contained in:
parent
9baee66bf3
commit
300aca38c2
@ -195,10 +195,6 @@ matrix:
|
|||||||
keep-history: false
|
keep-history: false
|
||||||
if: branch = master
|
if: branch = master
|
||||||
|
|
||||||
before_install:
|
|
||||||
# FIXME (travis-ci/travis-ci#8920) shouldn't be necessary...
|
|
||||||
- python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
|
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
on_success: never
|
on_success: never
|
||||||
|
@ -1061,15 +1061,15 @@ impl ToTokens for ast::Const {
|
|||||||
// again no suffix
|
// again no suffix
|
||||||
// panics on +-inf, nan
|
// panics on +-inf, nan
|
||||||
FloatLiteral(f) => {
|
FloatLiteral(f) => {
|
||||||
let f = Literal::f64_unsuffixed(f);
|
let f = Literal::f64_suffixed(f);
|
||||||
quote!(#f)
|
quote!(#f)
|
||||||
},
|
},
|
||||||
SignedIntegerLiteral(i) => {
|
SignedIntegerLiteral(i) => {
|
||||||
let i = Literal::i64_unsuffixed(i);
|
let i = Literal::i64_suffixed(i);
|
||||||
quote!(#i)
|
quote!(#i)
|
||||||
},
|
},
|
||||||
UnsignedIntegerLiteral(i) => {
|
UnsignedIntegerLiteral(i) => {
|
||||||
let i = Literal::u64_unsuffixed(i);
|
let i = Literal::u64_suffixed(i);
|
||||||
quote!(#i)
|
quote!(#i)
|
||||||
},
|
},
|
||||||
Null => unimplemented!(),
|
Null => unimplemented!(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user