Fixed code_buffer issue
This commit is contained in:
parent
419b9de7f3
commit
f0077caaa5
3 changed files with 6 additions and 4 deletions
|
@ -1,3 +1,5 @@
|
|||
# 2.0.1
|
||||
* Fixed invalid homepage url in pubspec.yaml
|
||||
# 2.0.0
|
||||
* Migrated to support Dart SDK 2.12.x NNBD
|
||||
# 1.0.1
|
||||
|
|
|
@ -20,9 +20,9 @@ class CodeBuffer implements StringBuffer {
|
|||
int _length = 0;
|
||||
|
||||
CodeBuffer(
|
||||
{this.space: ' ',
|
||||
this.newline: '\n',
|
||||
this.trailingNewline: false,
|
||||
{this.space = ' ',
|
||||
this.newline = '\n',
|
||||
this.trailingNewline = false,
|
||||
this.sourceUrl});
|
||||
|
||||
/// Creates a [CodeBuffer] that does not emit additional whitespace.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: angel3_code_buffer
|
||||
version: 2.0.0
|
||||
version: 2.0.1
|
||||
description: An advanced StringBuffer geared toward generating code, and source maps.
|
||||
homepage: https://github.com/dukefirehawk/angel/tree/angel3/packages/code_buffer
|
||||
environment:
|
||||
|
|
Loading…
Reference in a new issue