mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-25 19:11:45 +03:00
Merge pull request #389 from alexcrichton/fix-unused
Fix some eslint warnings about unused variables
This commit is contained in:
commit
1662668b42
50
.eslintrc.js
50
.eslintrc.js
@ -1,31 +1,33 @@
|
||||
module.exports = {
|
||||
env: {
|
||||
es6: true,
|
||||
browser: true,
|
||||
commonjs: true,
|
||||
node: true
|
||||
},
|
||||
extends: 'eslint:recommended',
|
||||
parserOptions: {
|
||||
sourceType: 'module'
|
||||
},
|
||||
rules: {
|
||||
indent: ['error', 4],
|
||||
module.exports = {
|
||||
env: {
|
||||
es6: true,
|
||||
browser: true,
|
||||
commonjs: true,
|
||||
node: true
|
||||
},
|
||||
extends: 'eslint:recommended',
|
||||
parserOptions: {
|
||||
sourceType: 'module'
|
||||
},
|
||||
rules: {
|
||||
indent: ['error', 4],
|
||||
'linebreak-style': [
|
||||
'error',
|
||||
'error',
|
||||
'unix'
|
||||
],
|
||||
],
|
||||
quotes: [
|
||||
'error',
|
||||
'error',
|
||||
'single'
|
||||
],
|
||||
],
|
||||
semi: [
|
||||
'error',
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'no-console': 0,
|
||||
'no-undef':
|
||||
'warn',
|
||||
'no-unused-vars': 'warn'
|
||||
}
|
||||
],
|
||||
'no-console': 0,
|
||||
'no-undef': 'warn'
|
||||
},
|
||||
globals: {
|
||||
BigInt64Array: true,
|
||||
BigUint64Array: true
|
||||
}
|
||||
};
|
||||
|
@ -410,7 +410,9 @@ impl<'a> Context<'a> {
|
||||
.unwrap_or("wasm_bindgen"),
|
||||
)
|
||||
} else {
|
||||
let import_wasm = if self.config.nodejs {
|
||||
let import_wasm = if self.globals.len() == 0 {
|
||||
String::new()
|
||||
} else if self.config.nodejs {
|
||||
self.footer
|
||||
.push_str(&format!("wasm = require('./{}_bg');", module_name));
|
||||
format!("var wasm;")
|
||||
@ -956,7 +958,6 @@ impl<'a> Context<'a> {
|
||||
return Ok(());
|
||||
}
|
||||
self.require_internal_export("__wbindgen_malloc")?;
|
||||
self.expose_uint64_memory();
|
||||
self.global(&format!(
|
||||
"
|
||||
function {}(arg) {{
|
||||
@ -1059,7 +1060,7 @@ impl<'a> Context<'a> {
|
||||
if !self.exposed_globals.insert("get_array_js_value_from_wasm") {
|
||||
return;
|
||||
}
|
||||
self.expose_get_array_u32_from_wasm();
|
||||
self.expose_uint32_memory();
|
||||
self.expose_take_object();
|
||||
self.global(
|
||||
"
|
||||
@ -1807,8 +1808,8 @@ impl<'a, 'b> SubContext<'a, 'b> {
|
||||
let target = if let Some(g) = getter {
|
||||
if import.structural {
|
||||
format!(
|
||||
"function(y) {{
|
||||
return this.{};
|
||||
"function() {{
|
||||
return this.{};
|
||||
}}",
|
||||
g
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user