template_block 0.1.4 copy "template_block: ^0.1.4" to clipboard
template_block: ^0.1.4 copied to clipboard

discontinued
outdatedDart 1 only

The 'template block' is a template engine for the code generators with a very simple syntax.

template_block #

The 'template block' is a template engine for the code generators with a very simple syntax.

Version: 0.1.4

import "package:template_block/template_block.dart";

void main() {
  var statement = new TemplateBlock(_templateStatement);
  statement.assign("MIN", 0);
  statement.assign("MAX", 128);
  var methodFoo = new TemplateBlock(_templateMethodFoo);
  methodFoo.assign("#STATEMENTS", statement.process());
  statement = statement.clone();
  statement.assign("MIN", 512);
  statement.assign("MAX", 1024);
  methodFoo.assign("#STATEMENTS", statement.process());
  var methodBaz = new TemplateBlock(_templateMethodBaz);
  var clazz = new TemplateBlock(_templateClass);
  clazz.assign("NAME", "MyClass");
  clazz.assign("#METHODS", methodBaz.process());
  clazz.assign("#METHODS", methodFoo.process());
  var library = new TemplateBlock(_templateLibraryPart);
  library.assign("NAME", "my_lib");
  library.assign("#CLASSES", clazz.process());
  print(library.process().join("\n"));
}

final String _templateLibraryPart =
    '''
part of {{NAME}};

{{#CONSTANTS}}
{{#VARIABLES}}
{{#CLASSES}}
''';

final String _templateClass =
    '''
class {{NAME}} {
  {{#CONSTANTS}}
  {{#VARIABLES}}
  {{#METHODS}}
}
''';

final String _templateMethodFoo =
    '''
int foo(int start, int end) {
  $BAZ_NAME();
  {{#STATEMENTS}}
}
''';

const String BAZ_NAME = "baz";

final String _templateMethodBaz = '''
void $BAZ_NAME() {
}
''';

final String _templateStatement =
    '''
for (var i = {{MIN}}; i < {{MAX}}; i++) {
}''';

Output:

part of my_lib;

class MyClass {
  void baz() {
  }
  
  int foo(int start, int end) {
    baz();
    for (var i = 0; i < 128; i++) {
    }
    for (var i = 512; i < 1024; i++) {
    }
  }
  
}

Grammar

template <- ((lastLine / multiLine / singleLine / emptyLine) (NEW_LINE !EOF)?)* EOF

lastLine <- NEW_LINE &EOF

multiLine <- multiLinePrefix* multiLineKey multiLineSuffix*

multiLinePrefix <- !multiLineKey !NEW_LINE .

multiLineKey <- "{{#" IDENT "}}"

multiLineSuffix <- !NEW_LINE .

singleLine <- singleLineParts

singleLineParts <- (singleLineKey / singleLinePart)+

singleLineKey <- "{{" IDENT "}}"

singleLinePart <- !singleLineKey !NEW_LINE .

emptyLine <- &NEW_LINE

EOF <- !.

IDENT <- IDENT_START IDENT_CONT*

IDENT_START <- [A-Za-z] / "_"

IDENT_CONT <- [0-9A-Za-z] / "_"

NEW_LINE <- "\n" / "\r\n" / "\r"
0
likes
0
pub points
6%
popularity

Publisher

unverified uploader

The 'template block' is a template engine for the code generators with a very simple syntax.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

strings

More

Packages that depend on template_block