Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

Replace `target` in LS hint with `internal`

+5 -2
+3
CHANGELOG.md
··· 26 26 - The compiler now correctly tracks the minimum required version for expressions 27 27 in `BitArray`s' `size` option to be `>= 1.12.0`. 28 28 ([Giacomo Cavalieri](https://github.com/giacomocavalieri)) 29 + 30 + - The language server no longer recommends the discouraged `@target` attribute. 31 + ([Hari Mohan](https://github.com/seafoamteal))
+1 -1
compiler-core/src/parse/error.rs
··· 557 557 558 558 ParseErrorType::UnknownAttribute => ParseErrorDetails { 559 559 text: "".into(), 560 - hint: Some("Try `deprecated`, `external` or `target` instead.".into()), 560 + hint: Some("Try `deprecated`, `external` or `internal` instead.".into()), 561 561 label_text: "I don't recognise this attribute".into(), 562 562 extra_labels: vec![], 563 563 },
+1 -1
compiler-core/src/parse/snapshots/gleam_core__parse__tests__unknown_attribute.snap
··· 13 13 1 │ @go_faster() 14 14 │ ^^^^^^^^^^ I don't recognise this attribute 15 15 16 - Hint: Try `deprecated`, `external` or `target` instead. 16 + Hint: Try `deprecated`, `external` or `internal` instead.