Skip to content

Commit

Permalink
Version 3.4.0-131.0.dev
Browse files Browse the repository at this point in the history
Merge 519799a into dev
  • Loading branch information
Dart CI committed Feb 11, 2024
2 parents c64c3d6 + 519799a commit efc5148
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pkg/compiler/doc/pragmas.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ evolving capabilities of the compiler.
```

```dart
@pragma('dart2js:prefer-inline) // Alias for the above annotation.
@pragma('dart2js:prefer-inline') // Alias for the above annotation.
```

This annotation may be placed on a function or method.
Expand All @@ -109,7 +109,7 @@ candidate.
```

```dart
@pragma('dart2js:never-inline) // Alias for the above annotation.
@pragma('dart2js:never-inline') // Alias for the above annotation.
```

This annotation may be placed on a function or method to prevent the function
Expand Down Expand Up @@ -224,7 +224,7 @@ variables, static variables, and top-level variables.

```dart
@pragma('dart2js:load-priority:normal')
@pragma('dart2js:load-priority:high)
@pragma('dart2js:load-priority:high')
```

By default, a call to `prefix.loadLibrary()` loads the library with 'normal'
Expand Down
2 changes: 1 addition & 1 deletion tools/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ CHANNEL dev
MAJOR 3
MINOR 4
PATCH 0
PRERELEASE 130
PRERELEASE 131
PRERELEASE_PATCH 0

0 comments on commit efc5148

Please sign in to comment.