File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ extension type JSSymbol._(JSSymbolRepType _jsSymbol) implements JSAny {
542542 /// the symbol itself.
543543 @Since ('3.11' )
544544 JSSymbol ([String ? description]) =>
545- description == null ? _constructSymbol () : _constructSymbol (description);
545+ _jsSymbol = description == null ? _constructSymbol () : _constructSymbol (description);
546546
547547 /// Searches for an existing symbol in a runtime-wide symbol registry with the
548548 /// given key and returns it if found.
@@ -551,7 +551,7 @@ extension type JSSymbol._(JSSymbolRepType _jsSymbol) implements JSAny {
551551 /// registry, and returns it.
552552 @Since ('3.11' )
553553 @JS ('for' )
554- external static JSSymbol forKey (String key) ;
554+ external static JSSymbol forKey (String key;
555555
556556 /// `Symbol.asyncDispose` from the ECMAScript [explicit resource management]
557557 /// feature.
You can’t perform that action at this time.
0 commit comments