Pacane
Pacane

Reputation: 21471

Is Dart Dev Compiler supposed to support dart:io?

I tried compiling a simple HttpServer.bind with DDC and it seems to throw a runtime error saying "Operation not supported" on that line.

Am I doing something wrong, or is DDC not supposed to support that?

Upvotes: 1

Views: 57

Answers (1)

Harry Terkelsen
Harry Terkelsen

Reputation: 2714

Dart Dev Compiler does not support dart:io. It is only for web applications.

Upvotes: 3

Related Questions