API-CHANGES.txt 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. 0.12.2:
  2. + Announcer
  3. + >>on:doOnce:
  4. + String
  5. + >>uriEncoded
  6. + >>uriDecoded
  7. + >>uriComponentEncoded
  8. + >>uriComponentDecoded
  9. + Collection
  10. + >>removeAll
  11. 0.12.0:
  12. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  13. * Existing classes moved to new KernelInfrastructure package
  14. * ImporterExporter
  15. * are now StreamExporters
  16. * aware of AMD namespaces
  17. * support transport types and commit channels
  18. + Node
  19. + >>nextChild
  20. + >>method
  21. + >>postCopy
  22. + >>isCascadeNode
  23. + >>isLastChild
  24. + BlockNode
  25. + >>nextNode:
  26. + >>nextChild
  27. + SendNode
  28. + >>isCascadeSendNode
  29. + >>shouldBeAliased
  30. + CompiledMethod>>sendTo:arguments:
  31. + Array
  32. + >>addFirst:
  33. + >>removeLast
  34. + Number
  35. + >>ceiling
  36. + >>floor
  37. + >>asNumber
  38. + >>//
  39. + >>cos
  40. + >>sin
  41. + >>tan
  42. + >>arcCos
  43. + >>arcSin
  44. + >>arcTan
  45. + >>log
  46. + >>log:
  47. + >>raisedTo:
  48. + >>sign
  49. + >>**
  50. + >>ln
  51. + >>e
  52. + String
  53. + class>>esc
  54. + >>asMutator
  55. + >>capitalized
  56. + >>isCapitalized
  57. + JSProxy>>printString
  58. + Behavior
  59. + >>ownProtocols
  60. + >>ownMethods
  61. + JSStream>>nextPutSendIndexFor:
  62. + InterfacingObject class
  63. + Interpreter class
  64. + DocumentFragmentTag class
  65. + AbstractExporter class
  66. + PlatformInterface class
  67. - Node>>extent
  68. - JSStream>>nextPutStatement:with:
  69. - Smalltalk.installSuperclass()
  70. - ClassReferenceNode class (now handled via VariableNode)
  71. 0.11.0:
  72. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  73. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  74. * Object>>printString
  75. * replace >>printString with >>printOn:
  76. * replace >>storeString with >>printString
  77. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  78. * Package>>fetch: is now Package>>load:
  79. * Package>>fetch:prefix: is now Package>>load:prefix:
  80. * Queue>>front replaced by Queue>>next
  81. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  82. * Queue>>back: replaced by Queue>>nextPut:
  83. * smalltalk.addMethod() does not use explicit JS selector
  84. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  85. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  86. * String>>asJavaScriptSelector moved to Kernel-Objects package
  87. + Object>>asString
  88. + Object>>putOn:
  89. + String>>isVowel
  90. + Collection>>putOn:
  91. + CharacterArray>>putOn:
  92. + Stream>><<
  93. + Stream>>write
  94. + SequenceableCollection>>newStream
  95. + SequenceableCollection>>readStream
  96. + SequenceableCollection>>stream
  97. + SequenceableCollection>>streamClass
  98. + SequenceableCollection>>writeStream
  99. + Collection>>isImmutable
  100. + Stream>>nextPutString:
  101. + StringStream>>nextPutString:
  102. + JSStream>>nextPutClassRefFunction:
  103. + String>>crlfSanitized
  104. + inlined Block now also responds to >>value:
  105. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  106. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  107. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  108. + Parser: Symbols for binarie selectores
  109. + Package>>commit
  110. + AIContext>>initializeLocals
  111. + ASTInterpreter>>withBlockContext:
  112. + smalltalk.allSelectors()
  113. + Object>>isCompiledMethod
  114. + Object>>isPackage
  115. + Object>>isBehavior
  116. + ClassMoved Announcemen class
  117. + Behavior>>includesBehavior:
  118. + Environment>>classes
  119. + Environment>>allSelectors
  120. + Environment>>removeProtocol:
  121. + Environment>>renameProtocol:to:in:
  122. + CompiledMethod>>protocol:
  123. + Smalltalk>>globalJsVariables
  124. + Smalltalk>>addGlobalJsVariable:
  125. + Smalltalk>>deleteGlobalJsVariable:
  126. - Object>>storeOn:
  127. - Object>>log:block:
  128. - Object>>printNl
  129. - Compiler-IR.st >>javascriptSelector
  130. - Compiler-IR.st >>nextPutVar:
  131. - Kernel-Collections.st >>asSuperSelector
  132. - Collection>>readStream
  133. - Collection>>stream
  134. - Collection>>streamClass
  135. - Collection>>writeStream
  136. - Symbol class (replaced with String)
  137. - IRInlinedNonLocalReturn class
  138. - IRInlinedSend>>nonLocalReturnInliner
  139. - IRNonLocalReturnInliner class
  140. - Package>>dependencies
  141. - Package>>dependencies:
  142. - Package>>properties
  143. - Package>>jsProperties
  144. - Package>>jsProperties:
  145. - Package>>propertiesAsJSON
  146. - Package>>propertyAt:
  147. - Package>>propertyAt:ifAbsent:
  148. - Package>>propertyAt:put:
  149. - Browser>>ajaxPutAt:data: